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

PdfGraphics.DrawBeziers(Pen, PointF[]) Method

Draws a series of Bezier splines from an array of PointF structures.

Namespace: DevExpress.Pdf

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

Declaration

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

Parameters

Name Type Description
pen Pen

A Pen structure that determines the color, width, and style of the curve.

points PointF[]

An array of PointF structures that represent the points that determine the curve.

Remarks

The number of points in the array of PointF structures should be a multiple of 3 plus 1, such as 4, 7, or 10. You should maintain the number order because the first spline requires 4 points and additional splines require 3 points each.

See Also