SetWindowOrgEx 函数 (wingdi.h)
SetWindowOrgEx 函数指定哪个窗口点映射到视区原点 (0,0) 。
语法
BOOL SetWindowOrgEx(
[in] HDC hdc,
[in] int x,
[in] int y,
[out] LPPOINT lppt
);
参数
[in] hdc
设备上下文的句柄。
[in] x
新窗口原点的 x 坐标(以逻辑单位为单位)。
[in] y
新窗口原点的 y 坐标(以逻辑单位为单位)。
[out] lppt
指向 POINT 结构的指针,该结构接收窗口的上一个原点(以逻辑单元为单位)。 如果 lpPoint 为 NULL,则不使用此参数。
返回值
如果该函数成功,则返回值为非零值。
如果函数失败,则返回值为零。
注解
这有助于定义从逻辑坐标空间 (也称为 窗口) 到 视区) (设备坐标空间的映射。 SetWindowOrgEx 指定哪个逻辑点映射到设备点 (0,0) 。 它的作用是移动轴,使逻辑点 (0,0) 不再引用左上角。
//map the logical point (xWinOrg, yWinOrg) to the device point (0,0)
SetWindowOrgEx (hdc, xWinOrg, yWinOrg, NULL)
这与 SetViewportOrgEx 函数相关。 通常,你将使用一个函数或另一个函数,但不能同时使用这两个函数。 无论使用 SetWindowOrgEx 和 SetViewportOrgEx, (0,0) 的设备点始终位于左上角。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | wingdi.h (包括 Windows.h) |
Library | Gdi32.lib |
DLL | Gdi32.dll |