FillEllipse()

Graphics::FillEllipse(const SharedPtr<Brush>&, Rectangle) method

Fills the interior of the ellipse specified by the bounding rectangle using the specified brush.

void System::Drawing::Graphics::FillEllipse(const SharedPtr<Brush> &brush, Rectangle rect)

Arguments

ParameterTypeDescription
brushconst SharedPtr<Brush>&A Brush object to use for filling
rectRectangleThe bounding rectangle that defines the ellipse to fill

Graphics::FillEllipse(const SharedPtr<Brush>&, RectangleF) method

Fills the interior of the ellipse specified by the bounding rectangle using the specified brush.

void System::Drawing::Graphics::FillEllipse(const SharedPtr<Brush> &brush, RectangleF rect)

Arguments

ParameterTypeDescription
brushconst SharedPtr<Brush>&A Brush object to use for filling
rectRectangleFThe bounding rectangle that defines the ellipse to fill

Graphics::FillEllipse(const SharedPtr<Brush>&, int, int, int, int) method

Fills the interior of the ellipse specified by the bounding rectangle using the specified brush.

void System::Drawing::Graphics::FillEllipse(const SharedPtr<Brush> &brush, int x, int y, int width, int height)

Arguments

ParameterTypeDescription
brushconst SharedPtr<Brush>&A Brush object to use for filling
xintThe X coordinate of the upper left corner of the bounding rectangle
yintThe Y coordinate of the upper left corner of the bounding rectangle
widthintThe width of the bounding rectangle
heightintThe height of the bounding rectangle

Graphics::FillEllipse(const SharedPtr<Brush>&, float, float, float, float) method

Fills the interior of the ellipse specified by the bounding rectangle using the specified brush.

void System::Drawing::Graphics::FillEllipse(const SharedPtr<Brush> &brush, float x, float y, float width, float height)

Arguments

ParameterTypeDescription
brushconst SharedPtr<Brush>&A Brush object to use for filling
xfloatThe X coordinate of the upper left corner of the bounding rectangle
yfloatThe Y coordinate of the upper left corner of the bounding rectangle
widthfloatThe width of the bounding rectangle
heightfloatThe height of the bounding rectangle

See Also