GetWindowOrgEx function
The GetWindowOrgEx function retrieves the x-coordinates and y-coordinates of the window origin for the specified device context.
Syntax
BOOL GetWindowOrgEx( _In_ HDC hdc, _Out_ LPPOINT lpPoint );
Parameters
- hdc [in]
-
A handle to the device context.
- lpPoint [out]
-
A pointer to a POINT structure that receives the coordinates, in logical units, of the window origin.
Return value
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also
- Coordinate Spaces and Transformations Overview
- Coordinate Space and Transformation Functions
- GetViewportOrgEx
- SetViewportOrgEx
- SetWindowOrgEx
Show: