Search
IGraphics.DrawLines Method (Pen, Point[])
See Also
 





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

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

void DrawLines (
    Pen pen,
    Point[] points
)

Visual Basic  Copy Code

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

 Parameters

pen
A .NET Pen object that determines the color, width, and style of the line segments.
points
An array of .NET Point structures that represent the points to connect.

 See Also