Graphics.DrawRectangle

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

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

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

関連項目


DrawRectangle(Pen, Rectangle)

Rectangle 構造体で指定された四角形を描画します。

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

関連項目


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

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

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

関連項目