GraphicsPath::AddLines (constPointF*,INT) 方法 (gdipluspath.h)
GraphicsPath::AddLines 方法将一系列连接线添加到此路径的当前图中。
语法
Status AddLines(
const PointF *points,
INT count
);
参数
points
指向指定线条起点和终点的点数组的指针。 数组中的第一个点是第一行的起点,数组中的最后一个点是最后一行的终点。 其他每个点都充当一行的终点和下一行的起点。
count
指定点数组中的元素数的整数。
返回值
Type:Status
如果方法成功,则返回 Ok,这是 Status 枚举的元素。
如果 方法失败,它将返回 Status 枚举的其他元素之一。
注解
示例
以下示例创建 GraphicsPath 对象路径,将四条连接线的序列添加到路径,然后绘制路径。
VOID Example_AddLines(HDC hdc)
{
Graphics graphics(hdc);
PointF pts[] = {PointF(20.0f, 20.0f),
PointF(30.0f, 30.0f),
PointF(40.0f, 25.0f),
PointF(50.0f, 30.0f),
PointF(60.0f, 20.0f)};
GraphicsPath path;
path.AddLines(pts, 5);
// Draw the path.
Pen pen(Color(255, 255, 0, 0));
graphics.DrawPath(&pen, &path);
}
要求
要求 | 值 |
---|---|
Header | gdipluspath.h |