Search
IGraphics.DrawBezier Method (Pen, Point, Point, Point, Point)
See Also
 





Draws a Bézier spline defined by four Point structures.

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

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

Visual Basic  Copy Code

Sub DrawBezier( _
    pen As Pen, _
    pt1 As Point, _
    pt2 As Point, _
    pt3 As Point, _
    pt4 As Point _
)

 Parameters

pen
A .NET Pen object that determines the color, width, and style of the curve.
pt1
A .NET Point structure that represents the starting point of the curve.
pt2
A .NET Point structure that represents the first control point for the curve.
pt3
A .NET Point structure that represents the second control point for the curve.
pt4
A .NET Point structure that represents the ending point of the curve.

 See Also