Search
GdiGraphics.DrawClosedCurve Method (Pen, PointF[], Single, FillMode)
See Also
 





Draws a closed cardinal spline defined by an array of PointF structures using a specified tension.

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

public virtual void DrawClosedCurve (
    Pen pen,
    PointF[] points,
    float tension,
    FillMode fillmode
)

Visual Basic  Copy Code

Public Overridable Sub DrawClosedCurve( _
    pen As Pen, _
    points() As PointF, _
    tension As Single, _
    fillmode As FillMode _
)

 Parameters

pen
A .NET Pen object that determines the color, width, and height of the curve.
points
An array of PointF structures that define the spline.
tension
A value greater than or equal to 0.0F that specifies the tension of the curve.
fillmode
Member of the FillMode enumeration that determines how the curve is filled. This parameter is required but is ignored.

 See Also