System::Drawing::Graphics::DrawEllipse メソッド

Graphics::DrawEllipse(const SharedPtr<Pen>&, float, float, float, float) method

現在のオブジェクトが表すサーフェス上に、指定されたペンを使用して指定された楕円を描画します。

void System::Drawing::Graphics::DrawEllipse(const SharedPtr<Pen> &pen, float x, float y, float width, float height)
パラメーター説明
ペンconst SharedPtr<Pen>&楕円を描画する際に使用するペン
x単精度浮動小数点数楕円を定義する矩形の左上隅の X 座標
y単精度浮動小数点数楕円を定義する矩形の左上隅の Y 座標
width単精度浮動小数点数楕円を定義する矩形の幅
height単精度浮動小数点数楕円を定義する矩形の高さ

参照

Graphics::DrawEllipse(const SharedPtr<Pen>&, int, int, int, int) method

現在のオブジェクトが表すサーフェス上に、指定されたペンを使用して指定された楕円を描画します。

void System::Drawing::Graphics::DrawEllipse(const SharedPtr<Pen> &pen, int x, int y, int width, int height)
パラメーター説明
ペンconst SharedPtr<Pen>&楕円を描画する際に使用するペン
xint楕円を定義する矩形の左上隅の X 座標
yint楕円を定義する矩形の左上隅の Y 座標
widthint楕円を定義する矩形の幅
heightint楕円を定義する矩形の高さ

参照

Graphics::DrawEllipse(const SharedPtr<Pen>&, Rectangle) method

現在のオブジェクトが表すサーフェス上に、指定されたペンを使用して指定された楕円を描画します。

void System::Drawing::Graphics::DrawEllipse(const SharedPtr<Pen> &pen, Rectangle rect)
パラメーター説明
ペンconst SharedPtr<Pen>&楕円を描画する際に使用するペン
rectRectangle楕円を定義する矩形

参照

Graphics::DrawEllipse(const SharedPtr<Pen>&, RectangleF) method

現在のオブジェクトが表すサーフェス上に、指定されたペンを使用して指定された楕円を描画します。

void System::Drawing::Graphics::DrawEllipse(const SharedPtr<Pen> &pen, RectangleF rect)
パラメーター説明
ペンconst SharedPtr<Pen>&楕円を描画する際に使用するペン
rectRectangleF楕円を定義する矩形

参照