CWindow::GetClientRect

Ruft die Koordinaten des Clientbereichs ab.

BOOL GetClientRect(
   LPRECT lpRect 
) const throw();

Hinweise

Siehe GetClientRect in Windows SDK.

Beispiel

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::GetClientRect() to get the client area rectangle
//of the window

CWindow myWindow;
myWindow.Attach(hWnd);
RECT rc;
myWindow.GetClientRect(&rc);

Anforderungen

Header: atlwin.h

Siehe auch

Referenz

CWindow-Klasse

CWindow::GetWindowRect

RECT