Graphics.FillEllipse

FillEllipse(Brush, RectangleF)

によって指定された外接する長方形によって定義された楕円の内部を塗りつぶします。RectangleF構造体.

public void FillEllipse(Brush brush, RectangleF rect)
パラメータタイプ説明
brushBrushBrush塗りつぶしの特性を決定します。
rectRectangleFRectangleF楕円を定義する外接する四角形を表す構造体。

例外

例外調子
ArgumentNullExceptionbrush無効である。

関連項目


FillEllipse(Brush, float, float, float, float)

座標、幅、および高さのペアによって指定された外接する長方形によって定義された楕円の内部を塗りつぶします.

public void FillEllipse(Brush brush, float x, float y, float width, float height)
パラメータタイプ説明
brushBrushBrush塗りつぶしの特性を決定します。
xSingle楕円を定義する外接する四角形の左上隅の x 座標。
ySingle楕円を定義する外接する四角形の左上隅の y 座標。
widthSingle楕円を定義する外接する四角形の幅。
heightSingle楕円を定義する外接する四角形の高さ。

例外

例外調子
ArgumentNullExceptionbrush無効である。

関連項目


FillEllipse(Brush, Rectangle)

によって指定された外接する長方形によって定義された楕円の内部を塗りつぶします。Rectangle構造体.

public void FillEllipse(Brush brush, Rectangle rect)
パラメータタイプ説明
brushBrushBrush塗りつぶしの特性を決定します。
rectRectangleRectangle楕円を定義する外接する四角形を表す構造体。

例外

例外調子
ArgumentNullExceptionbrush無効である。

関連項目


FillEllipse(Brush, int, int, int, int)

座標、幅、および高さのペアによって指定された外接する長方形によって定義された楕円の内部を塗りつぶします.

public void FillEllipse(Brush brush, int x, int y, int width, int height)
パラメータタイプ説明
brushBrushBrush塗りつぶしの特性を決定します。
xInt32楕円を定義する外接する四角形の左上隅の x 座標。
yInt32楕円を定義する外接する四角形の左上隅の y 座標。
widthInt32楕円を定義する外接する四角形の幅。
heightInt32楕円を定義する外接する四角形の高さ。

例外

例外調子
ArgumentNullExceptionbrush無効である。

関連項目