FillClosedCurve()

Graphics::FillClosedCurve(const SharedPtr<Brush>&, const ArrayPtr<PointF>&, Drawing2D::FillMode, float) method

Draws a closed spline using the specified brush.

void System::Drawing::Graphics::FillClosedCurve(const SharedPtr<Brush> &brush, const ArrayPtr<PointF> &points, Drawing2D::FillMode fillmode=Drawing2D::FillMode::Alternate, float tension=0.5f)

Arguments

ParameterTypeDescription
brushconst SharedPtr<Brush>&A brush to use when drawing the spline
pointsconst ArrayPtr<PointF>&Array of points that determines the spline
fillmodeDrawing2D::FillModeIGNORED
tensionfloatValue that specifies the tension of the spline

Graphics::FillClosedCurve(const SharedPtr<Brush>&, const ArrayPtr<Point>&, Drawing2D::FillMode, float) method

Draws a closed spline using the specified brush.

void System::Drawing::Graphics::FillClosedCurve(const SharedPtr<Brush> &brush, const ArrayPtr<Point> &points, Drawing2D::FillMode fillmode=Drawing2D::FillMode::Alternate, float tension=0.5f)

Arguments

ParameterTypeDescription
brushconst SharedPtr<Brush>&A brush to use when drawing the spline
pointsconst ArrayPtr<Point>&Array of points that determines the spline
fillmodeDrawing2D::FillModeIGNORED
tensionfloatValue that specifies the tension of the spline

See Also