Graphics::D rawPie (constPen*,REAL,REAL,REAL,REAL,REAL,REAL) 方法 (gdiplusgraphics.h)
Graphics::D rawPie 方法绘制饼图。
语法
Status DrawPie(
[in] const Pen *pen,
[in] REAL x,
[in] REAL y,
[in] REAL width,
[in] REAL height,
[in] REAL startAngle,
[in] REAL sweepAngle
);
parameters
[in] pen
类型: 常数 笔*
指向用于绘制饼图的笔的指针。
[in] x
类型: REAL
实数,指定矩形左上角的 x 坐标,该矩形边框将绘制饼图的椭圆。
[in] y
类型: REAL
实数,指定矩形左上角的 y 坐标,该矩形边框将绘制饼图的椭圆。
[in] width
类型: REAL
实数,指定绘制饼图的椭圆边框的宽度。
[in] height
类型: REAL
实数,指定绘制饼图的椭圆边框的高度。
[in] startAngle
类型: REAL
指定 x 轴与定义饼图的弧的起点之间的角度(以度为单位)的实数。 正值指定顺时针旋转。
[in] sweepAngle
类型: REAL
实数,指定定义饼图的弧的起点和终点之间的角度(以度为单位)。 正值指定顺时针旋转。
返回值
类型: 状态
如果该方法成功,则返回 Ok,这是 Status 枚举的元素。
如果方法失败,它将返回 Status 枚举的其他元素之一。
注解
下图显示了在矩形边界的椭圆中绘制的饼图。 此图还显示了椭圆的水平轴以及 startAngle 和 sweepAngle 的方向。
示例
以下示例绘制一个饼图。
VOID Example_DrawPie4(HDC hdc)
{
Graphics graphics(hdc);
// Create a Pen object.
Pen blackPen(Color(255, 0, 0, 0), 3);
// Define the pie.
REAL x = 0.0f;
REAL y = 0.0f;
REAL width = 200.0f;
REAL height = 100.0f;
REAL startAngle = 0.0f;
REAL sweepAngle = 45.0f;
// Draw the pie.
graphics.DrawPie(&blackPen, x, y, width, height, startAngle, sweepAngle);
}
要求
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdiplusgraphics.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |