Graphics.FillClosedCurve Method

Definition

Fills the interior of a closed cardinal spline curve defined by an array of Point structures.

Overloads

FillClosedCurve(Brush, Point[])

Fills the interior of a closed cardinal spline curve defined by an array of Point structures.

FillClosedCurve(Brush, PointF[])

Fills the interior of a closed cardinal spline curve defined by an array of PointF structures.

FillClosedCurve(Brush, ReadOnlySpan<Point>)

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

FillClosedCurve(Brush, ReadOnlySpan<PointF>)

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

FillClosedCurve(Brush, Point[], FillMode)

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

FillClosedCurve(Brush, PointF[], FillMode)

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

FillClosedCurve(Brush, ReadOnlySpan<Point>, FillMode)

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

FillClosedCurve(Brush, ReadOnlySpan<PointF>, FillMode)

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

FillClosedCurve(Brush, Point[], FillMode, Single)

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

FillClosedCurve(Brush, PointF[], FillMode, Single)

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

FillClosedCurve(Brush, ReadOnlySpan<Point>, FillMode, Single)

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

FillClosedCurve(Brush, ReadOnlySpan<PointF>, FillMode, Single)

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

FillClosedCurve(Brush, Point[])

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

Fills the interior of a closed cardinal spline curve defined by an array of Point structures.

C#
public void FillClosedCurve(System.Drawing.Brush brush, params System.Drawing.Point[] points);
C#
public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.Point[] points);

Parameters

brush
Brush

Brush that determines the characteristics of the fill.

points
Point[]

Array of Point structures that define the spline.

Exceptions

brush is null.

-or-

points is null.

Examples

The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler. The code performs the following actions:

  • Creates a solid red brush.

  • Creates an array of four points to define a spline.

  • Fills the curve on the screen.

The curve has a default tension of 0.5.

C#
public void FillClosedCurvePoint(PaintEventArgs e)
{
             
    // Create solid brush.
    SolidBrush redBrush = new SolidBrush(Color.Red);
             
    //Create array of points for curve.
    Point point1 = new Point(100, 100);
    Point point2 = new Point(200,  50);
    Point point3 = new Point(250, 200);
    Point point4 = new Point(50, 150);
    Point[] points = {point1, point2, point3, point4};
             
    // Fill curve on screen.
    e.Graphics.FillClosedCurve(redBrush, points);
}

Remarks

This method fills the interior of a closed cardinal spline that passes through each point in the array. If the last point does not match the first point, an additional curve segment is added from the last point to the first point to close it.

The array of points must contain at least four Point structures.

This method uses a default tension of 0.5.

Applies to

.NET 9 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

FillClosedCurve(Brush, PointF[])

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

Fills the interior of a closed cardinal spline curve defined by an array of PointF structures.

C#
public void FillClosedCurve(System.Drawing.Brush brush, params System.Drawing.PointF[] points);
C#
public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.PointF[] points);

Parameters

brush
Brush

Brush that determines the characteristics of the fill.

points
PointF[]

Array of PointF structures that define the spline.

Exceptions

brush is null.

-or-

points is null.

Examples

The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler. The code performs the following actions:

  • Creates a solid red brush.

  • Creates an array of four points to define a spline.

  • Fills the curve on the screen.

The curve has a default tension of 0.5.

C#
public void FillClosedCurvePointF(PaintEventArgs e)
{
             
    // Create solid brush.
    SolidBrush redBrush = new SolidBrush(Color.Red);
             
    //Create array of points for curve.
    PointF point1 = new PointF(100.0F, 100.0F);
    PointF point2 = new PointF(200.0F,  50.0F);
    PointF point3 = new PointF(250.0F, 200.0F);
    PointF point4 = new PointF(50.0F, 150.0F);
    PointF[] points = {point1, point2, point3, point4};
             
    // Fill curve on screen.
    e.Graphics.FillClosedCurve(redBrush, points);
}

Remarks

This method fills the interior of a closed cardinal spline that passes through each point in the array. If the last point does not match the first point, an additional curve segment is added from the last point to the first point to close it.

The array of points must contain at least four PointF structures.

This method uses a default tension of 0.5.

Applies to

.NET 9 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

FillClosedCurve(Brush, ReadOnlySpan<Point>)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

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

C#
public void FillClosedCurve(System.Drawing.Brush brush, scoped ReadOnlySpan<System.Drawing.Point> points);

Parameters

brush
Brush

A Brush that determines the characteristics of the fill.

points
ReadOnlySpan<Point>

Array of PointF structures that define the spline.

Applies to

.NET 9 (package-provided) and Windows Desktop 9
Product Versions
.NET 9 (package-provided)
Windows Desktop 9

FillClosedCurve(Brush, ReadOnlySpan<PointF>)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

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

C#
public void FillClosedCurve(System.Drawing.Brush brush, scoped ReadOnlySpan<System.Drawing.PointF> points);

Parameters

brush
Brush

A Brush that determines the characteristics of the fill.

points
ReadOnlySpan<PointF>

Array of PointF structures that define the spline.

Applies to

.NET 9 (package-provided) and Windows Desktop 9
Product Versions
.NET 9 (package-provided)
Windows Desktop 9

FillClosedCurve(Brush, Point[], FillMode)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

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

C#
public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.Point[] points, System.Drawing.Drawing2D.FillMode fillmode);

Parameters

brush
Brush

Brush that determines the characteristics of the fill.

points
Point[]

Array of Point structures that define the spline.

fillmode
FillMode

Member of the FillMode enumeration that determines how the curve is filled.

Exceptions

brush is null.

-or-

points is null.

Examples

The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler. The code performs the following actions:

  • Creates a solid red brush.

  • Creates an array of four points to define a spline.

  • Sets the fill mode to Winding.

  • Fills the curve on the screen.

The curve has a default tension of 0.5.

C#
public void FillClosedCurvePointFillMode(PaintEventArgs e)
{
             
    // Create solid brush.
    SolidBrush redBrush = new SolidBrush(Color.Red);
             
    //Create array of points for curve.
    Point point1 = new Point(100, 100);
    Point point2 = new Point(200,  50);
    Point point3 = new Point(250, 200);
    Point point4 = new Point(50, 150);
    Point[] points = {point1, point2, point3, point4};
             
    // Set fill mode.
    FillMode newFillMode = FillMode.Winding;
             
    // Fill curve on screen.
    e.Graphics.FillClosedCurve(redBrush, points, newFillMode);
}

Remarks

This method fills the interior of a closed cardinal spline that passes through each point in the array. If the last point does not match the first point, an additional curve segment is added from the last point to the first point to close it.

The array of points must contain at least four Point structures.

This method uses a default tension of 0.5.

Applies to

.NET 9 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

FillClosedCurve(Brush, PointF[], FillMode)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

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

C#
public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.PointF[] points, System.Drawing.Drawing2D.FillMode fillmode);

Parameters

brush
Brush

Brush that determines the characteristics of the fill.

points
PointF[]

Array of PointF structures that define the spline.

fillmode
FillMode

Member of the FillMode enumeration that determines how the curve is filled.

Exceptions

brush is null.

-or-

points is null.

Examples

The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler. The code performs the following actions:

  • Creates a solid red brush.

  • Creates an array of four points to define a spline.

  • Sets the fill mode to Winding.

  • Fills the curve on the screen.

The curve has a default tension of 0.5.

C#
public void FillClosedCurvePointFFillMode(PaintEventArgs e)
{
             
    // Create solid brush.
    SolidBrush redBrush = new SolidBrush(Color.Red);
             
    // Create array of points for curve.
    PointF point1 = new PointF(100.0F, 100.0F);
    PointF point2 = new PointF(200.0F,  50.0F);
    PointF point3 = new PointF(250.0F, 200.0F);
    PointF point4 = new PointF(50.0F, 150.0F);
    PointF[] points = {point1, point2, point3, point4};
             
    // Set fill mode.
    FillMode newFillMode = FillMode.Winding;
             
    // Fill curve on screen.
    e.Graphics.FillClosedCurve(redBrush, points, newFillMode);
}

Remarks

This method fills the interior of a closed cardinal spline that passes through each point in the array. If the last point does not match the first point, an additional curve segment is added from the last point to the first point to close it.

The array of points must contain at least four Point structures.

This method uses a default tension of 0.5.

Applies to

.NET 9 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

FillClosedCurve(Brush, ReadOnlySpan<Point>, FillMode)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

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

C#
public void FillClosedCurve(System.Drawing.Brush brush, ReadOnlySpan<System.Drawing.Point> points, System.Drawing.Drawing2D.FillMode fillmode);

Parameters

brush
Brush

A Brush that determines the characteristics of the fill.

points
ReadOnlySpan<Point>

Array of PointF structures that define the spline.

fillmode
FillMode

Member of the FillMode enumeration that determines how the curve is filled.

Applies to

.NET 9 (package-provided) and Windows Desktop 9
Product Versions
.NET 9 (package-provided)
Windows Desktop 9

FillClosedCurve(Brush, ReadOnlySpan<PointF>, FillMode)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

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

C#
public void FillClosedCurve(System.Drawing.Brush brush, ReadOnlySpan<System.Drawing.PointF> points, System.Drawing.Drawing2D.FillMode fillmode);

Parameters

brush
Brush

A Brush that determines the characteristics of the fill.

points
ReadOnlySpan<PointF>

Array of PointF structures that define the spline.

fillmode
FillMode

Member of the FillMode enumeration that determines how the curve is filled.

Applies to

.NET 9 (package-provided) and Windows Desktop 9
Product Versions
.NET 9 (package-provided)
Windows Desktop 9

FillClosedCurve(Brush, Point[], FillMode, Single)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

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

C#
public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.Point[] points, System.Drawing.Drawing2D.FillMode fillmode, float tension);

Parameters

brush
Brush

Brush that determines the characteristics of the fill.

points
Point[]

Array of Point structures that define the spline.

fillmode
FillMode

Member of the FillMode enumeration that determines how the curve is filled.

tension
Single

Value greater than or equal to 0.0F that specifies the tension of the curve.

Exceptions

brush is null.

-or-

points is null.

Examples

The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler. The code performs the following actions:

  • Creates a solid red brush.

  • Creates an array of four points to define a spline.

  • Sets the fill mode to Winding.

  • Sets the tension to 1.0.

  • Fills the curve on the screen.

C#
public void FillClosedCurvePointFillModeTension(PaintEventArgs e)
{
             
    // Create solid brush.
    SolidBrush redBrush = new SolidBrush(Color.Red);
             
    // Create array of points for curve.
    Point point1 = new Point(100, 100);
    Point point2 = new Point(200,  50);
    Point point3 = new Point(250, 200);
    Point point4 = new Point(50, 150);
    Point[] points = {point1, point2, point3, point4};
             
    // Set fill mode.
    FillMode newFillMode = FillMode.Winding;
             
    // Set tension.
    float tension = 1.0F;
             
    // Fill curve on screen.
    e.Graphics.FillClosedCurve(redBrush, points, newFillMode, tension);
}

Remarks

This method fills the interior of a closed cardinal spline that passes through each point in the array. If the last point does not match the first point, an additional curve segment is added from the last point to the first point to close it.

The array of points must contain at least four Point structures.

The tension parameter determines the shape of the spline. If the value of the tension parameter is 0.0F, this method draws straight line segments to connect the points. Usually, the tension parameter is less than or equal to 1.0F. Values over 1.0F produce unusual results.

Applies to

.NET 9 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

FillClosedCurve(Brush, PointF[], FillMode, Single)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

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

C#
public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.PointF[] points, System.Drawing.Drawing2D.FillMode fillmode, float tension);

Parameters

brush
Brush

A Brush that determines the characteristics of the fill.

points
PointF[]

Array of PointF structures that define the spline.

fillmode
FillMode

Member of the FillMode enumeration that determines how the curve is filled.

tension
Single

Value greater than or equal to 0.0F that specifies the tension of the curve.

Exceptions

brush is null.

-or-

points is null.

Examples

The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler. The code performs the following actions:

  • Creates a solid red brush.

  • Creates an array of four points to define a spline.

  • Sets the fill mode to Winding.

  • Sets the tension to 1.0.

  • Fills the curve on the screen.

C#
public void FillClosedCurvePointFFillModeTension(PaintEventArgs e)
{
             
    // Create solid brush.
    SolidBrush redBrush = new SolidBrush(Color.Red);
             
    // Create array of points for curve.
    PointF point1 = new PointF(100.0F, 100.0F);
    PointF point2 = new PointF(200.0F,  50.0F);
    PointF point3 = new PointF(250.0F, 200.0F);
    PointF point4 = new PointF(50.0F, 150.0F);
    PointF[] points = {point1, point2, point3, point4};
             
    // Set fill mode.
    FillMode newFillMode = FillMode.Winding;
             
    // Set tension.
    float tension = 1.0F;
             
    // Fill curve on screen.
    e.Graphics.FillClosedCurve(redBrush, points, newFillMode, tension);
}

Remarks

This method fills the interior of a closed cardinal spline that passes through each point in the array. If the last point does not match the first point, an additional curve segment is added from the last point to the first point to close it.

The array of points must contain at least four Point structures.

The tension parameter determines the shape of the spline. If the value of the tension parameter is 0.0F, this method draws straight line segments to connect the points. Usually, the tension parameter is less than or equal to 1.0F. Values over 1.0F produce unusual results.

Applies to

.NET 9 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

FillClosedCurve(Brush, ReadOnlySpan<Point>, FillMode, Single)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

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

C#
public void FillClosedCurve(System.Drawing.Brush brush, ReadOnlySpan<System.Drawing.Point> points, System.Drawing.Drawing2D.FillMode fillmode, float tension);

Parameters

brush
Brush

A Brush that determines the characteristics of the fill.

points
ReadOnlySpan<Point>

Array of PointF structures that define the spline.

fillmode
FillMode

Member of the FillMode enumeration that determines how the curve is filled.

tension
Single

Value greater than or equal to 0.0F that specifies the tension of the curve.

Applies to

.NET 9 (package-provided) and Windows Desktop 9
Product Versions
.NET 9 (package-provided)
Windows Desktop 9

FillClosedCurve(Brush, ReadOnlySpan<PointF>, FillMode, Single)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

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

C#
public void FillClosedCurve(System.Drawing.Brush brush, ReadOnlySpan<System.Drawing.PointF> points, System.Drawing.Drawing2D.FillMode fillmode, float tension);

Parameters

brush
Brush

A Brush that determines the characteristics of the fill.

points
ReadOnlySpan<PointF>

Array of PointF structures that define the spline.

fillmode
FillMode

Member of the FillMode enumeration that determines how the curve is filled.

tension
Single

Value greater than or equal to 0.0F that specifies the tension of the curve.

Applies to

.NET 9 (package-provided) and Windows Desktop 9
Product Versions
.NET 9 (package-provided)
Windows Desktop 9