DrawBeziers

Graphics.DrawBeziers method (1 of 2)

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

public void DrawBeziers(Pen pen, Point[] points)
ParameterTypeDescription
penPenPen that determines the color, width, and style of the curve.
pointsPoint[]Array of Point structures that represent the points that determine the curve.

Exceptions

exceptioncondition
ArgumentNullExceptionpen is null. -or- points is null.

See Also


Graphics.DrawBeziers method (2 of 2)

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

public void DrawBeziers(Pen pen, PointF[] points)
ParameterTypeDescription
penPenPen that determines the color, width, and style of the curve.
pointsPointF[]Array of PointF structures that represent the points that determine the curve.

Exceptions

exceptioncondition
ArgumentNullExceptionpen is null. -or- points is null.

See Also