Skip to main content

GraphicsCache.DrawBeziers(Pen, Point[]) Method

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

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

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

Parameters

Name Type Description
pen Pen

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

points Point[]

Array of Point 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