Graphics.DrawBeziers

DrawBeziers(Pen, PointF[])

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

public void DrawBeziers(Pen pen, PointF[] points)
ParameterTypeDescription
penPenPen that determines the color, width, and style of the curve.
pointsPointF[]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


DrawBeziers(Pen, Point[])

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

public void DrawBeziers(Pen pen, Point[] points)
ParameterTypeDescription
penPenPen that determines the color, width, and style of the curve.
pointsPoint[]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