Graphics.DrawEllipse

DrawEllipse(Pen, RectangleF)

バウンディング RectangleF. によって定義された楕円を描画します。

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

関連項目


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楕円を定義する外接する四角形の高さ。

関連項目