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

GdiGraphics.DrawLines Method (Pen, PointF[])

Draws a polyline.

Namespace: Aurigma.GraphicsMill.Drawing
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub DrawLines ( _
	pen As Pen, _
	points As PointF() _
)
C#
public void DrawLines(
	Pen pen,
	PointF[] points
)

Parameters

pen

Type: Aurigma.GraphicsMill.Drawing.Pen

Pen object which is used to draw a polyline.
points

Type: System.Drawing.PointF []

Array of coordinates of the polyline vertices.

Remarks

Polyline is a set of connected lines (end point of some polyline segment is a start point of the next segment). It is defined with an array of points which should be connected with this polyline (polyline vertices).

All the coordinates are measured in units specified with Unit property.

See Also

Reference