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

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

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

void System::Drawing::Graphics::DrawPie(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::DrawPie(const SharedPtr<Pen>&, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t) method

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

void System::Drawing::Graphics::DrawPie(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_tパイの終了点まで、startAngle から時計回りに測定した角度(度)

参照

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

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

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

参照

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

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

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

参照