Fills the interior of a closed curve defined by an array of points.
[Visual Basic] Overloads Public Sub FillClosedCurve( _ ByVal brush As Brush, _ ByVal points() As PointF, _ ByVal fillmode As FillMode _ ) [C#] public void FillClosedCurve( Brush brush, PointF[] points, FillMode fillmode ); [C++] public: void FillClosedCurve( Brush* brush, PointF* points[], FillMode fillmode ); [JScript] public function FillClosedCurve( brush : Brush, points : PointF[], fillmode : FillMode );
This method fills the interior of a smooth closed curve that passes through each point in thearray. If the last point indoes not match the first point, then the curve is closed by connecting the last point to the first point.
Theparameter determines the shape of the curve. If the value ofis 0, this method draws line segments to connect the points.
The points array must contain at least 4 elements.
Graphics Class | Graphics Members | System.Drawing Namespace | Graphics.FillClosedCurve Overload List