Skip to main content
All docs
V23.2

DXGraphics.DrawBeziers(DXPen, PointF[]) Method

Draws a series of Bezier splines defined by an array of points.

Namespace: DevExpress.Drawing

Assembly: DevExpress.Drawing.v23.2.dll

NuGet Package: DevExpress.Drawing

Declaration

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

Parameters

Name Type Description
pen DXPen

An object that determines the color, width, and style of the curve.

points PointF[]

The points that determine the curve. The number of points in the array should be a multiple of 3 plus 1 (4, 7, 10, and so on).

See Also