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





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

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void DrawBezier (
    Pen pen,
    Point p1,
    Point p2,
    Point p3,
    Point p4
)

Visual Basic  Copy Code

Sub DrawBezier( _
    pen As Pen, _
    p1 As Point, _
    p2 As Point, _
    p3 As Point, _
    p4 As Point _
)

 Parameters

pen
A .NET Pen object that determines the color, width, and style of the curve.
p1

A Point structure that represents the starting point of the curve.

p2

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

p3

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

p4

A Point structure that represents the ending point of the curve.

 See Also