Graphics.DrawBeziers
Contents
[
Hide
]DrawBeziers(Pen, PointF[])
Draws a series of Bézier splines from an array of Point 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 Point structures that represent the points that determine the curve. The number of points in the array should be a multiple of 3 plus 1, such as 4, 7, or 10. |
See Also
- class Pen
- struct PointF
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
DrawBeziers(Pen, Point[])
Draws a series of Bézier splines from an array of PointF 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 PointF structures that represent the points that determine the curve. The number of points in the array should be a multiple of 3 plus 1, such as 4, 7, or 10. |
See Also
- class Pen
- struct Point
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing