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 オブジェクト
x単精度浮動小数点数バウンディング矩形の左上隅の X 座標
y単精度浮動小数点数バウンディング矩形の左上隅の Y 座標
width単精度浮動小数点数バウンディング矩形の幅
height単精度浮動小数点数バウンディング矩形の高さ

参照

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 オブジェクト
rectRectangle塗りつぶす楕円を定義するバウンディング矩形

参照

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

境界矩形で指定された楕円の内部を、指定されたブラシで塗りつぶします。

void System::Drawing::Graphics::FillEllipse(const SharedPtr<Brush> &brush, RectangleF rect)
パラメーター説明
brushconst SharedPtr<Brush>&塗りつぶしに使用する Brush オブジェクト
rectRectangleF塗りつぶす楕円を定義するバウンディング矩形

参照