GraphicsPath.AddEllipse

AddEllipse(RectangleF)

現在のパスに楕円を追加します。

public void AddEllipse(RectangleF rect)
パラメータタイプ説明
rectRectangleF楕円を定義する外接する四角形を表す RectangleF。

関連項目


AddEllipse(float, float, float, float)

現在のパスに楕円を追加します。

public void AddEllipse(float x, float y, float width, float height)
パラメータタイプ説明
xSingle楕円を定義する外接する四角形の左上隅の x 座標。
ySingle楕円を定義する外接する四角形の左上隅の y 座標。
widthSingle楕円を定義する外接する四角形の幅。
heightSingle楕円を定義する外接する四角形の高さ。

関連項目