Graphics::D rawLines (constPen*,constPoint*,INT) 方法 (gdiplusgraphics.h)
Graphics::D rawLines 方法绘制一系列连接线。
语法
Status DrawLines(
[in] const Pen *pen,
[in] const Point *points,
[in] INT count
);
parameters
[in] pen
类型: const 触控笔*
指向用于绘制线条的笔的指针。
[in] points
类型: const Point*
指向 Point 对象数组的指针,这些对象指定行的起始点和终点。
[in] count
类型: INT
指定 点 数组中的元素数的整数。
返回值
类型: 状态
如果方法成功,则返回 Ok,这是 Status 枚举的元素。
如果 方法失败,它将返回 Status 枚举的其他元素之一。
注解
每行都需要一个起点和一个终点。 每行的终点是下一行的起点。
示例
以下示例绘制一系列连接线。
VOID Example_DrawLines(HDC hdc)
{
Graphics graphics(hdc);
// Create a Pen object.
Pen blackPen(Color(255, 0, 0, 0), 3);
// Create an array of Point objects that define the lines to draw.
Point point1(10, 10);
Point point2(10, 100);
Point point3(200, 50);
Point point4(250, 300);
Point points[4] = {point1, point2, point3, point4};
Point* pPoints = points;
// Draw the lines.
graphics.DrawLines(&blackPen, pPoints, 4);
}
要求
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdiplusgraphics.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |