Graphics.DrawEllipse

DrawEllipse(Pen, RectangleF)

境界によって定義された楕円を描画しますRectangleF .

public void DrawEllipse(Pen pen, RectangleF rect)
パラメータタイプ説明
penPenPen楕円の色、幅、スタイルを決定します。
rectRectangleFRectangleF楕円の境界を定義する構造。

例外

例外調子
ArgumentNullExceptionpen無効である。

関連項目


DrawEllipse(Pen, float, float, float, float)

座標、高さ、幅のペアで指定された外接する四角形で定義される楕円を描画します。

public void DrawEllipse(Pen pen, float x, float y, float width, float height)
パラメータタイプ説明
penPenPen楕円の色、幅、スタイルを決定します。
xSingle楕円を定義する外接する四角形の左上隅の x 座標。
ySingle楕円を定義する外接する四角形の左上隅の y 座標。
widthSingle楕円を定義する外接する四角形の幅。
heightSingle楕円を定義する外接する四角形の高さ。

例外

例外調子
ArgumentNullExceptionpen無効である。

関連項目


DrawEllipse(Pen, Rectangle)

境界で指定された楕円を描画しますRectangle構造体.

public void DrawEllipse(Pen pen, Rectangle rect)
パラメータタイプ説明
penPenPen楕円の色、幅、スタイルを決定します。
rectRectangleRectangle楕円の境界を定義する構造。

例外

例外調子
ArgumentNullExceptionpen無効である。

関連項目


DrawEllipse(Pen, int, int, int, int)

座標、高さ、幅のペアで指定された外接する四角形で定義される楕円を描画します。

public void DrawEllipse(Pen pen, int x, int y, int width, int height)
パラメータタイプ説明
penPenPen楕円の色、幅、スタイルを決定します。
xInt32楕円を定義する外接する四角形の左上隅の x 座標。
yInt32楕円を定義する外接する四角形の左上隅の y 座標。
widthInt32楕円を定義する外接する四角形の幅。
heightInt32楕円を定義する外接する四角形の高さ。

例外

例外調子
ArgumentNullExceptionpen無効である。

関連項目