Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

PdfGraphics.DrawLines(Pen, PointF[]) Method

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

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v19.1.Drawing.dll

Declaration

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

Parameters

Name Type Description
pen Pen

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

points PointF[]

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

Remarks

Use the DrawLines method to draw a series of lines connecting an array of ending points.

See Also