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

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

Draws a Bezier spline defined by four ordered pairs of coordinates that represent points.

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v18.2.dll

Declaration

public void DrawBezier(
    Pen pen,
    float x1,
    float y1,
    float x2,
    float y2,
    float x3,
    float y3,
    float x4,
    float y4
)

Parameters

Name Type Description
pen Pen

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

x1 Single

The x-coordinate of the starting point of the curve.

y1 Single

The y-coordinate of the starting point of the curve.

x2 Single

The x-coordinate of the first control point of the curve.

y2 Single

The y-coordinate of the first control point of the curve.

x3 Single

The x-coordinate of the second control point of the curve.

y3 Single

The y-coordinate of the second control point of the curve.

x4 Single

The x-coordinate of the ending point of the curve.

y4 Single

The y-coordinate of the ending point of the curve.

See Also