次の方法で共有


Graphics.DrawArc メソッド

座標ペア、幅、および高さで指定された楕円の一部を表す円弧を描画します。

オーバーロードの一覧

Rectangle 構造体で指定された楕円の一部を表す円弧を描画します。

[Visual Basic] Overloads Public Sub DrawArc(Pen, Rectangle, Single, Single)

[C#] public void DrawArc(Pen, Rectangle, float, float);

[C++] public: void DrawArc(Pen*, Rectangle, float, float);

[JScript] public function DrawArc(Pen, Rectangle, float, float);

RectangleF 構造体で指定された楕円の一部を表す円弧を描画します。

[Visual Basic] Overloads Public Sub DrawArc(Pen, RectangleF, Single, Single)

[C#] public void DrawArc(Pen, RectangleF, float, float);

[C++] public: void DrawArc(Pen*, RectangleF, float, float);

[JScript] public function DrawArc(Pen, RectangleF, float, float);

座標ペア、幅、および高さで指定された楕円の一部を表す円弧を描画します。

[Visual Basic] Overloads Public Sub DrawArc(Pen, Integer, Integer, Integer, Integer, Integer, Integer)

[C#] public void DrawArc(Pen, int, int, int, int, int, int);

[C++] public: void DrawArc(Pen*, int, int, int, int, int, int);

[JScript] public function DrawArc(Pen, int, int, int, int, int, int);

座標ペア、幅、および高さで指定された楕円の一部を表す円弧を描画します。

[Visual Basic] Overloads Public Sub DrawArc(Pen, Single, Single, Single, Single, Single, Single)

[C#] public void DrawArc(Pen, float, float, float, float, float, float);

[C++] public: void DrawArc(Pen*, float, float, float, float, float, float);

[JScript] public function DrawArc(Pen, float, float, float, float, float, float);

使用例

[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。

  • 黒いペンを作成します。
  • 楕円に外接する四角形の位置とサイズを作成します。
  • 開始角度 (45 度) とスイープ角度 (270 度) を定義します。
  • 画面に楕円の円弧を描画します。

[Visual Basic, C#] x 軸に対して +45 ~ -45 度の間のセグメントがない不完全な楕円が生成されます。

[Visual Basic, C#] メモ   ここでは、DrawArc のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。

 
Public Sub DrawArcFloat(e As PaintEventArgs)
' Create pen.
Dim blackPen As New Pen(Color.Black, 3)
' Create coordinates of rectangle to bound ellipse.
Dim x As Single = 0F
Dim y As Single = 0F
Dim width As Single = 100F
Dim height As Single = 200F
' Create start and sweep angles on ellipse.
Dim startAngle As Single = 45F
Dim sweepAngle As Single = 270F
' Draw arc to screen.
e.Graphics.DrawArc(blackPen, x, y, width, height, startAngle, _
sweepAngle)
End Sub
        
[C#] 
public void DrawArcFloat(PaintEventArgs e)
{
// Create pen.
Pen blackPen= new Pen(Color.Black, 3);
// Create coordinates of rectangle to bound ellipse.
float x = 0.0F;
float y = 0.0F;
float width = 100.0F;
float height = 200.0F;
// Create start and sweep angles on ellipse.
float startAngle =  45.0F;
float sweepAngle = 270.0F;
// Draw arc to screen.
e.Graphics.DrawArc(blackPen, x, y, width, height, startAngle, sweepAngle);
}
        

[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

参照

Graphics クラス | Graphics メンバ | System.Drawing 名前空間