GetClientRect
A version of this page is also available for
4/8/2010
This function retrieves the coordinates of a window's client area.
Syntax
BOOL GetClientRect(
HWND hWnd,
LPRECT lpRect
);
Parameters
- hWnd
[in] Handle to the window whose client coordinates are to be retrieved.
- lpRect
[out] Long pointer to a RECT structure that receives the client coordinates. The left and top members are zero. The right and bottom members contain the width and height of the window.
Return Value
Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.
Remarks
Command bars are included in the client area.
Requirements
Header | winuser.h |
Windows Embedded CE | Windows CE 1.0 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |