Skip to main content
A newer version of this page is available. .

GraphicsCache.DrawBezier(Pen, Point, Point, Point, Point) Method

Draws a Bezier spline defined by four Point structures.

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v18.2.dll

Declaration

public void DrawBezier(
    Pen pen,
    Point pt1,
    Point pt2,
    Point pt3,
    Point pt4
)

Parameters

Name Type Description
pen Pen

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

pt1 Point

Point structure that represents the starting point of the curve.

pt2 Point

Point structure that represents the first control point for the curve.

pt3 Point

Point structure that represents the second control point for the curve.

pt4 Point

Point structure that represents the ending point of the curve.

See Also