strokePath 函数 (wingdi.h)
StrokePath 函数使用当前笔呈现指定路径。
语法
BOOL StrokePath(
[in] HDC hdc
);
参数
[in] hdc
包含已完成路径的设备上下文的句柄。
返回值
如果该函数成功,则返回值为非零值。
如果函数失败,则返回值为零。
注解
路径(如果由 StrokePath 绘制)必须已通过调用 EndPath 完成。 在尚未调用 EndPath 的路径上调用此函数将导致此函数失败并返回零。 与其他路径绘制函数(如 StrokeAndFillPath)不同, StrokePath 不会尝试通过绘制从路径上的第一个点到路径上最后一个点的直线来关闭路径。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | wingdi.h (包括 Windows.h) |
Library | Gdi32.lib |
DLL | Gdi32.dll |