Search
IGraphics.DrawLines Method
See Also
 





Draws a series of line segments that connect an array of Point structures.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void DrawLines (
    Pen pen,
    IList<Point> points
)

Visual Basic  Copy Code

Sub DrawLines( _
    pen As Pen, _
    points As IList(Of Point) _
)

 Parameters

pen

A Pen object that determines the color, width, and style of the line segments.

points

An array of Point structures that represent the points to connect.

 See Also