System::Drawing::Graphics::FillEllipse 方法

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

使用指定的画刷填充由边界矩形指定的椭圆内部。

void System::Drawing::Graphics::FillEllipse(const SharedPtr<Brush> &brush, float x, float y, float width, float height)
参数类型描述
brushconst SharedPtr<Brush>&用于填充的 Brush 对象
xfloat边界矩形左上角的 X 坐标
yfloat边界矩形左上角的 Y 坐标
widthfloat边界矩形的宽度
heightfloat边界矩形的高度

另见

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

使用指定的画刷填充由边界矩形指定的椭圆内部。

void System::Drawing::Graphics::FillEllipse(const SharedPtr<Brush> &brush, int x, int y, int width, int height)
参数类型描述
brushconst SharedPtr<Brush>&用于填充的 Brush 对象
xint边界矩形左上角的 X 坐标
yint边界矩形左上角的 Y 坐标
widthint边界矩形的宽度
heightint边界矩形的高度

另见

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

使用指定的画刷填充由边界矩形指定的椭圆内部。

void System::Drawing::Graphics::FillEllipse(const SharedPtr<Brush> &brush, Rectangle rect)
参数类型描述
brushconst SharedPtr<Brush>&用于填充的 Brush 对象
rect矩形定义要填充的椭圆的边界矩形

另见

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

使用指定的画刷填充由边界矩形指定的椭圆内部。

void System::Drawing::Graphics::FillEllipse(const SharedPtr<Brush> &brush, RectangleF rect)
参数类型描述
brushconst SharedPtr<Brush>&用于填充的 Brush 对象
rectRectangleF定义要填充的椭圆的边界矩形

另见