Graphics.DrawBeziers
DrawBeziers(Pen, Point[])
Draws a series of Bézier splines from an array of Point
structures.
public void DrawBeziers(Pen pen, Point[] points)
Parameter | Type | Description |
---|
pen | Pen | Pen that determines the color, width, and style of the curve. |
points | Point[] | Array of Point structures that represent the points that determine the curve. |
Exceptions
exception | condition |
---|
ArgumentNullException | pen is null. -or- points is null. |
See Also
DrawBeziers(Pen, PointF[])
Draws a series of Bézier splines from an array of PointF
structures.
public void DrawBeziers(Pen pen, PointF[] points)
Parameter | Type | Description |
---|
pen | Pen | Pen that determines the color, width, and style of the curve. |
points | PointF[] | Array of PointF structures that represent the points that determine the curve. |
Exceptions
exception | condition |
---|
ArgumentNullException | pen is null. -or- points is null. |
See Also