Graphics.DrawEllipse メソッド (Pen, Single, Single, Single, Single)
座標ペア、高さ、および幅で指定された外接する四角形によって定義される楕円を描画します。
Overloads Public Sub DrawEllipse( _
ByVal pen As Pen, _ ByVal x As Single, _ ByVal y As Single, _ ByVal width As Single, _ ByVal height As Single _)
[C#]
public void DrawEllipse(Penpen,floatx,floaty,floatwidth,floatheight);
[C++]
public: void DrawEllipse(Pen* pen,floatx,floaty,floatwidth,floatheight);
[JScript]
public function DrawEllipse(
pen : Pen,x : float,y : float,width : float,height : float);
パラメータ
- pen
楕円の色、幅、およびスタイルを決定する Pen オブジェクト。 - x
楕円を定義する外接する四角形の左上隅の x 座標。 - y
楕円を定義する外接する四角形の左上隅の y 座標。 - width
楕円を定義する外接する四角形の幅。 - height
楕円を定義する外接する四角形の高さ。
戻り値
このメソッドは値を返しません。
解説
このメソッドは、 x 、 y 、 width 、 height の各パラメータで示された外接する四角形によって定義される楕円を描画します。
使用例
[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。
- 黒いペンを作成します。
- 楕円に外接する四角形の位置とサイズを作成します。
- 画面に楕円を描画します。
Public Sub DrawEllipseFloat(e As PaintEventArgs)
' Create pen.
Dim blackPen As New Pen(Color.Black, 3)
' Create location and size of ellipse.
Dim x As Single = 0F
Dim y As Single = 0F
Dim width As Single = 200F
Dim height As Single = 100F
' Draw ellipse to screen.
e.Graphics.DrawEllipse(blackPen, x, y, width, height)
End Sub
[C#]
public void DrawEllipseFloat(PaintEventArgs e)
{
// Create pen.
Pen blackPen = new Pen(Color.Black, 3);
// Create location and size of ellipse.
float x = 0.0F;
float y = 0.0F;
float width = 200.0F;
float height = 100.0F;
// Draw ellipse to screen.
e.Graphics.DrawEllipse(blackPen, x, y, width, height);
}
[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
Graphics クラス | Graphics メンバ | System.Drawing 名前空間 | Graphics.DrawEllipse オーバーロードの一覧