次の方法で共有


Graphics.DrawArc メソッド (Pen, Int32, Int32, Int32, Int32, Int32, Int32)

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

Overloads Public Sub DrawArc( _
   ByVal pen As Pen, _   ByVal x As Integer, _   ByVal y As Integer, _   ByVal width As Integer, _   ByVal height As Integer, _   ByVal startAngle As Integer, _   ByVal sweepAngle As Integer _)
[C#]
public void DrawArc(Penpen,intx,inty,intwidth,intheight,intstartAngle,intsweepAngle);
[C++]
public: void DrawArc(Pen* pen,intx,inty,intwidth,intheight,intstartAngle,intsweepAngle);
[JScript]
public function DrawArc(
   pen : Pen,x : int,y : int,width : int,height : int,startAngle : int,sweepAngle : int);

パラメータ

  • pen
    円弧の色、幅、およびスタイルを決定する Pen オブジェクト。
  • x
    楕円を定義する四角形の左上隅の x 座標。
  • y
    楕円を定義する四角形の左上隅の y 座標。
  • width
    楕円を定義する四角形の幅。
  • height
    楕円を定義する四角形の高さ。
  • startAngle
    x 軸から円弧の開始点まで、時計回りに測定した角度 (度単位)。
  • sweepAngle
    startAngle パラメータから円弧の終了点まで、時計回りに測定した角度 (度単位)。

戻り値

このメソッドは値を返しません。

解説

このメソッドは、楕円の周囲の一部である円弧を描画します。楕円は、四角形の境界によって定義されます。円弧は、楕円の周囲のうち、 startAngle パラメータと startAngle + sweepAngle パラメータの間の部分です。

使用例

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

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

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

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

[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.DrawArc オーバーロードの一覧