windows_programming_notes.nbk: Home | Index | Next Page: GetCommandLine | Previous Page: GetCapture


 GetClientRect

The GetClientRect function retrieves the coordinates of a window's client area. The client coordinates specify the upper-left and lower-right corners of the client area. Because client coordinates are relative to the upper-left corner of a window's client area, the coordinates of the upper-left corner are (0,0).

Syntax

    BOOL GetClientRect(
        HWND   hWnd,
        LPRECT lpRect
     );

Parameters

Return Value

If the function succeeds, the return value is nonzero.

If the function fails, the return value is zero. To get extended error information, call GetLastError.

Remarks

In conformance with conventions for the RECT structure, the bottom-right coordinates of the returned rectangle are exclusive. In other words, the pixel at (right, bottom) lies immediately outside the rectangle.

Function Information


windows_programming_notes.nbk: Home | Index | Next Page: GetCommandLine | Previous Page: GetCapture


Notebook exported on Monday, 7 July 2008, 18:56:50 PM Eastern Daylight Time