Search
GdiGraphics.DrawLines Method (Pen, PointF[])
See Also
 





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

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

public virtual void DrawLines (
    Pen pen,
    PointF[] points
)

Visual Basic  Copy Code

Public Overridable Sub DrawLines( _
    pen As Pen, _
    points() As PointF _
)

 Parameters

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

 See Also