Graphics.FillRectangle

FillRectangle(Brush, Rectangle)

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

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

例外

例外調子
ArgumentNullExceptionbrush無効である。

関連項目


FillRectangle(Brush, RectangleF)

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

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

例外

例外調子
ArgumentNullExceptionbrush無効である。

関連項目


FillRectangle(Brush, float, float, float, float)

座標のペア、幅と高さで指定された長方形の内部を塗りつぶします。

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

例外

例外調子
ArgumentNullExceptionbrush無効である。

関連項目


FillRectangle(Brush, int, int, int, int)

座標のペア、幅と高さで指定された長方形の内部を塗りつぶします。

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

例外

例外調子
ArgumentNullExceptionbrush無効である。

関連項目