Graphics::FillClosedCurve Method (Brush, array<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.
Assembly: System.Drawing (in System.Drawing.dll)
public: void FillClosedCurve( Brush^ brush, array<Point>^ points, FillMode fillmode, float tension )
Parameters
- brush
- Type: System.Drawing::Brush
Brush that determines the characteristics of the fill.
- points
- Type: array<System.Drawing::Point>
Array of Point structures that define the spline.
- fillmode
- Type: System.Drawing.Drawing2D::FillMode
Member of the FillMode enumeration that determines how the curve is filled.
- tension
- Type: System::Single
Value greater than or equal to 0.0F that specifies the tension of the curve.
| Exception | Condition |
|---|---|
| ArgumentNullException | brush is nullptr. -or- points is nullptr. |
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.
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.
public: void FillClosedCurvePointFillModeTension( PaintEventArgs^ e ) { // Create solid brush. SolidBrush^ redBrush = gcnew SolidBrush( Color::Red ); // Create array of points for curve. Point point1 = Point(100,100); Point point2 = Point(200,50); Point point3 = Point(250,200); Point point4 = Point(50,150); array<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 ); }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.