polyline 函数 (wingdi.h)
Polyline 函数通过连接指定数组中的点来绘制一系列线段。
语法
BOOL Polyline(
[in] HDC hdc,
[in] const POINT *apt,
[in] int cpt
);
参数
[in] hdc
设备上下文的句柄。
[in] apt
指向 POINT 结构数组(以逻辑单元为单位)的指针。
[in] cpt
数组中的点数。 此数字必须大于或等于 2。
返回值
如果该函数成功,则返回值为非零值。
如果函数失败,则返回值为零。
注解
使用当前笔从第一个点到后续点绘制线条。 与 LineTo 或 PolylineTo 函数不同, Polyline 函数既不使用也不更新当前位置。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | wingdi.h (包括 Windows.h) |
Library | Gdi32.lib |
DLL | Gdi32.dll |