GraphicsPath::GetPathTypes 方法 (gdipluspath.h)
GraphicsPath::GetPathTypes 方法获取此路径的点类型数组。
语法
Status GetPathTypes(
[out] BYTE *types,
[in] INT count
);
parameters
[out] types
类型: BYTE*
指向接收点类型的数组的指针。 必须为此数组分配内存。 可以调用 GraphicsPath::GetPointCount 方法来确定数组的所需大小。
[in] count
类型: INT
指定 类型 数组中的元素数的整数。 将此参数设置为等于 GraphicsPath::GetPointCount 方法的返回值。
返回值
类型: 状态
如果该方法成功,则返回 Ok,这是 Status 枚举的元素。
如果方法失败,它将返回 Status 枚举的其他元素之一。
注解
GraphicsPath 对象具有点数组和类型数组。 类型数组中的每个元素都是一个字节,用于指定点类型和点数组中相应元素的一组标志。 PathPointType 枚举中列出了可能的点类型和标志。
示例
以下示例创建一个路径,并向该路径添加一个包含三条连接线的序列。 代码调用 GraphicsPath::GetPointCount 方法来确定路径的点类型数组中的字节数,然后分配一个足够大的缓冲区来容纳该数组。 然后,代码调用 GraphicsPath::GetPathTypes 方法,用点类型的数组填充缓冲区。
GraphicsPath path;
Point pts[] = {Point(0, 0), Point(2, 2), Point(3, 3), Point(0, 5)};
path.AddLines(pts, 4);
INT num = path.GetPointCount();
BYTE* pTypes = new BYTE[num];
path.GetPathTypes(pTypes, num);
要求
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdipluspath.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |