Search
IGraphics.DrawBeziers Method
See Also
 





Draws a series of Bézier splines from an array of Point structures.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void DrawBeziers (
    Pen pen,
    IList<Point> points
)

Visual Basic  Copy Code

Sub DrawBeziers( _
    pen As Pen, _
    points As IList(Of Point) _
)

 Parameters

pen

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

points

An array of Point structures that represent the points that determine the curve.

 See Also