Graphics.DrawRectangle

DrawRectangle(Pen, RectangleF)

で指定された長方形を描画しますRectangleF構造体.

public void DrawRectangle(Pen pen, RectangleF rect)
パラメータタイプ説明
penPenPen長方形の色、幅、およびスタイルを決定します。
rectRectangleFRectangleF描画する四角形を表す構造体。

例外

例外調子
ArgumentNullExceptionpen無効である。

関連項目


DrawRectangle(Pen, Rectangle)

で指定された長方形を描画しますRectangle構造体.

public void DrawRectangle(Pen pen, Rectangle rect)
パラメータタイプ説明
penPenPen長方形の色、幅、およびスタイルを決定します。
rectRectangleRectangle描画する四角形を表す構造体。

例外

例外調子
ArgumentNullExceptionpen無効である。

関連項目


DrawRectangle(Pen, float, float, float, float)

座標ペア、幅、高さで指定された長方形を描画します。

public void DrawRectangle(Pen pen, float x, float y, float width, float height)
パラメータタイプ説明
penPenPen長方形の色、幅、およびスタイルを決定します。
xSingle描画する四角形の左上隅の x 座標。
ySingle描画する四角形の左上隅の y 座標。
widthSingle描画する四角形の幅。
heightSingle描画する四角形の高さ。

例外

例外調子
ArgumentNullExceptionpen無効である。

関連項目


DrawRectangle(Pen, int, int, int, int)

座標ペア、幅、高さで指定された長方形を描画します。

public void DrawRectangle(Pen pen, int x, int y, int width, int height)
パラメータタイプ説明
penPenPen長方形の色、幅、およびスタイルを決定します。
xInt32描画する四角形の左上隅の x 座標。
yInt32描画する四角形の左上隅の y 座標。
widthInt32描画する四角形の幅。
heightInt32描画する四角形の高さ。

例外

例外調子
ArgumentNullExceptionpen無効である。

関連項目