This function retrieves the dimensions of the bounding rectangle of the specified window. The dimensions are given in screen coordinates that are relative to the upper-left corner of the screen.
At a Glance
Header file: | Winuser.h |
Windows CE versions: | 1.0 and later |
Syntax
BOOL GetWindowRect( HWND hWnd, LPRECT lpRect );
Parameters
hWnd
Handle to the window.
lpRect
Long pointer to a RECT structure that receives the screen coordinates of the upper-left and lower-right corners of the window.
Return Values
Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.
See Also