GetClientRect
This function retrieves the coordinates of a window's client area.
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 Values
Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.
Remarks
Command bars are included in the client area.
Requirements
OS Versions: Windows CE 1.0 and later.
Header: Winuser.h.
See Also
GetWindowRect | RECT | Windows Functions
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.