Skip to main content

GraphicsCache.DrawBeziers(Pen, PointF[]) Method

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

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

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

Parameters

Name Type Description
pen Pen

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

points PointF[]

Array of PointF structures that represent the points that determine the curve. The number of points in the array should be a multiple of 3 plus 1, such as 4, 7, or 10.

See Also