Graphics::FillPie (constBrush*,INT,INT,INT,INT,REAL,REAL) 方法 (gdiplusgraphics.h)

Graphics::FillPie 方法使用画笔填充饼图的内部。

语法

Status FillPie(
  [in] const Brush *brush,
  [in] INT         x,
  [in] INT         y,
  [in] INT         width,
  [in] INT         height,
  [in] REAL        startAngle,
  [in] REAL        sweepAngle
);

参数

[in] brush

类型: const Brush*

指向用于绘制饼图内部的 Brush 对象的指针。

[in] x

类型: INT

整数,指定边框边框左上角的 x 坐标。 椭圆的曲线部分是饼图的弧线。

[in] y

类型: INT

指定边框边框左上角的 y 坐标的整数。

[in] width

类型: INT

指定边框边框宽度的整数。

[in] height

类型: INT

指定边框边框高度的整数。

[in] startAngle

类型: REAL

实数,指定 x 轴与饼弧的起点之间的角度(以度为单位)。

[in] sweepAngle

类型: REAL

实数,指定饼图弧的起点和终点之间的角度(以度为单位)。

返回值

类型: 状态

如果该方法成功,则返回 Ok,这是 Status 枚举的元素。

如果方法失败,它将返回 Status 枚举的其他元素之一。

注解

饼图是椭圆内部的一部分, (由椭圆曲线和两条径向线) 。 startAnglesweepAngle 指定要使用的椭圆部分。

示例

以下示例定义一个饼图,然后对其进行填充。

VOID Example_FillPie3(HDC hdc)
{
   Graphics graphics(hdc);

   // Create a SolidBrush object.
   SolidBrush blackBrush(Color(255, 0, 0, 0));

   // Define the pie shape.
   int x = 0;
   int y = 0;
   int width = 200;
   int height = 100;
   REAL startAngle = 0.0f;
   REAL sweepAngle = 45.0f;

   // Fill the pie.
   graphics.FillPie(&blackBrush, 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

另请参阅

颜色

显卡

Status