This documentation is for the old version. Go to the latest Graphics Mill docs

PolylineVObject Constructor

Creates and initializes a new polyline v-object.

Namespace: Aurigma.GraphicsMill.WinControls
Assembly: Aurigma.GraphicsMill.WinControls.VectorObjects (in Aurigma.GraphicsMill.WinControls.VectorObjects.dll)

Syntax

Visual Basic
Public Sub New ( _
        points
As PointF(), _
        closePath
As Boolean, _
        fillMode
As FillMode _
)
C#
public PolylineVObject(
       
PointF[] points,
       
bool closePath,
       
FillMode fillMode
)

Parameters

points

Type: System.Drawing.PointF []

An array of the nodes that make up the polyline.
closePath

Type: System.Boolean

A value indicating if the polyline should be closed.
fillMode

Type: System.Drawing.Drawing2D.FillMode

A FillMode enumeration member that determines how to fill and clip the interior of a closed figure.

See Also

Reference