Graphics.DrawArc

DrawArc(Pen, RectangleF, float, float)

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

public void DrawArc(Pen pen, RectangleF rect, float startAngle, float sweepAngle)
パラメータタイプ説明
penPen弧の色、幅、スタイルを決定するペン。
rectRectangleF楕円の境界を定義する RectangleF 構造体。
startAngleSingle軸から円弧の始点まで時計回りに測定した角度 (度単位)。
sweepAngleSinglestartAngle パラメーターから円弧の終点まで時計回りに測定された角度 (度単位)。

関連項目


DrawArc(Pen, float, float, float, float, float, float)

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

public void DrawArc(Pen pen, float x, float y, float width, float height, float startAngle, 
    float sweepAngle)
パラメータタイプ説明
penPen弧の色、幅、スタイルを決定するペン。
xSingle楕円を定義する四角形の左上隅の x 座標。
ySingle楕円を定義する四角形の左上隅の y 座標。
widthSingle楕円を定義する長方形の幅。
heightSingle楕円を定義する長方形の高さ。
startAngleSingle軸から円弧の始点まで時計回りに測定した角度 (度単位)。
sweepAngleSinglestartAngle パラメーターから円弧の終点まで時計回りに測定された角度 (度単位)。

関連項目