Search
GdiGraphics.FillClosedCurve Method (Brush, PointF[], FillMode, Single)
See Also
 





Fills the interior a closed cardinal spline curve defined by an array of PointF structures using the specified fill mode and tension.

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

public virtual void FillClosedCurve (
    Brush brush,
    PointF[] points,
    FillMode fillmode,
    float tension
)

Visual Basic  Copy Code

Public Overridable Sub FillClosedCurve( _
    brush As Brush, _
    points() As PointF, _
    fillmode As FillMode, _
    tension As Single _
)

 Parameters

brush
A .NET Brush object that determines the characteristics of the fill.
points
An array of .NET PointF structures that define the spline.
fillmode
Member of the .NET FillMode enumeration that determines how the curve is filled.
tension
A value greater than or equal to 0.0F that specifies the tension of the curve.

 See Also