Draw a spline curve.
Syntax

[C#]

void DrawCurve(Pen pen, Point[] points);
void DrawCurve(Pen pen, Point[] points, double tension);
void DrawCurve(Pen pen, Point[] points, int offset, int count);
void DrawCurve(Pen pen, Point[] points, int offset, int count, double tension);
void DrawCurve(Pen pen, PointF[] points);
void DrawCurve(Pen pen, PointF[] points, double tension);
void DrawCurve(Pen pen, PointF[] points, int offset, int count);
void DrawCurve(Pen pen, PointF[] points, int offset, int count, double tension);

[Visual Basic]

Sub DrawCurve(pen As Pen, points As Point())
Sub DrawCurve(pen As Pen, points As Point(), tension As Double)
Sub DrawCurve(pen As Pen, points As Point(), offset As Integer, count As Integer)
Sub DrawCurve(pen As Pen, points As Point(), offset As Integer, count As Integer, tension As Double)
Sub DrawCurve(pen As Pen, points As PointF())
Sub DrawCurve(pen As Pen, points As PointF(), tension As Double)
Sub DrawCurve(pen As Pen, points As PointF(), offset As Integer, count As Integer)
Sub DrawCurve(pen As Pen, points As PointF(), offset As Integer, count As Integer, tension As Double)
Params
Name Description
pen The pen with which to draw the curve.
points The points defining the curve.
tension The tension to use.
offset The index of the first point to use.
count The number of points to use.
Notes

None.

Example

None.