GraphicsPath::AddArc(constRectF&,REAL,REAL) 方法(gdipluspath.h)

GraphicsPath::AddArc 方法将椭圆弧添加到此路径的当前图中。

语法

Status AddArc(
  const RectF & rect,
  REAL          startAngle,
  REAL          sweepAngle
);

参数

rect

对一个矩形的引用,该矩形绑定了包含弧线的椭圆。

startAngle

指定椭圆水平轴与弧线起点之间的顺时针角度(以度为单位)的实数。

sweepAngle

指定起点(startAngle)和弧的终点之间的顺时针角度(以度为单位)的实数。

返回值

类型:状态

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

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

言论

例子

以下示例创建 GraphicsPath 对象 路径,向路径添加弧线,关闭弧线,然后绘制 路径

VOID AddArcExample(HDC hdc)
{
   Graphics graphics(hdc);
   RectF rect(20.0f, 20.0f, 50.0f, 100.0f);

   GraphicsPath path;
   path.AddArc(rect, 0.0f, 180.0f);
   path.CloseFigure();

   // Draw the path.
   Pen pen(Color(255, 255, 0, 0));
   graphics.DrawPath(&pen, &path);
}

要求

要求 价值
标头 gdipluspath.h

另请参阅

AddArc 方法

使用区域 剪辑

构造和绘制路径

创建路径渐变

DrawArc 方法

椭圆和弧线

GraphicsPath

路径

RectF