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

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

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

void System::Drawing::Graphics::DrawArc(const SharedPtr<Pen> &pen, float x, float y, float width, float height, float startAngle, float sweepAngle)
パラメーター説明
ペンconst SharedPtr<Pen>&弧を描画する際に使用するペン
x単精度浮動小数点数楕円を定義する矩形の左上隅の X 座標
y単精度浮動小数点数楕円を定義する矩形の左上隅の Y 座標
width単精度浮動小数点数楕円を定義する矩形の幅
height単精度浮動小数点数楕円を定義する矩形の高さ
startAngle単精度浮動小数点数X 軸から弧の開始点まで、時計回りに測定した角度(度)
sweepAngle単精度浮動小数点数startAngle から弧の終了点まで、時計回りに測定した角度(度)

参照

Graphics::DrawArc(const SharedPtr<Pen>&, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t) method

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

void System::Drawing::Graphics::DrawArc(const SharedPtr<Pen> &pen, int32_t x, int32_t y, int32_t width, int32_t height, int32_t startAngle, int32_t sweepAngle)
パラメーター説明
ペンconst SharedPtr<Pen>&弧を描画する際に使用するペン
xint32_t楕円を定義する矩形の左上隅の X 座標
yint32_t楕円を定義する矩形の左上隅の Y 座標
widthint32_t楕円を定義する矩形の幅
heightint32_t楕円を定義する矩形の高さ
startAngleint32_tX 軸から弧の開始点まで、時計回りに測定した角度(度)
sweepAngleint32_tstartAngle から弧の終了点まで、時計回りに測定した角度(度)

参照

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

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

void System::Drawing::Graphics::DrawArc(const SharedPtr<Pen> &pen, Rectangle rect, float startAngle, float sweepAngle)
パラメーター説明
ペンconst SharedPtr<Pen>&弧を描画する際に使用するペン
rectRectangle楕円を定義する矩形
startAngle単精度浮動小数点数X 軸から弧の開始点まで、時計回りに測定した角度(度)
sweepAngle単精度浮動小数点数startAngle から弧の終了点まで、時計回りに測定した角度(度)

参照

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

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

void System::Drawing::Graphics::DrawArc(const SharedPtr<Pen> &pen, RectangleF rect, float startAngle, float sweepAngle)
パラメーター説明
ペンconst SharedPtr<Pen>&弧を描画する際に使用するペン
rectRectangleF楕円を定義する矩形
startAngle単精度浮動小数点数X 軸から弧の開始点まで、時計回りに測定した角度(度)
sweepAngle単精度浮動小数点数startAngle から弧の終了点まで、時計回りに測定した角度(度)

参照