Draw a closed spline curve.
Syntax

[C#]

void DrawClosedCurve(Pen pen, Point[] points);
void DrawClosedCurve(Pen pen, Point[] points, double tension, FillMode fillMode);
void DrawClosedCurve(Pen pen, PointF[] points);
void DrawClosedCurve(Pen pen, PointF[] points, double tension, FillMode fillMode);

[Visual Basic]

Sub DrawClosedCurve(pen As Pen, points As Point())
Sub DrawClosedCurve(pen As Pen, points As Point(), tension As Double, fillMode As FillMode)
Sub DrawClosedCurve(pen As Pen, points As PointF())
Sub DrawClosedCurve(pen As Pen, points As PointF(), tension As Double, fillMode As FillMode)
Params
Name Description
pen The pen with which to draw the curve.
points The points defining the curve.
tension The tension to use.
Notes

None.

Example

None.