Partager via


CWindow::GetClientRect

Récupère les coordonnées de la zone cliente.

BOOL GetClientRect( 
   LPRECT lpRect  
) const throw();

Notes

Consultez GetClientRect dans Kit de développement logiciel Windows.

Exemple

//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);

Configuration requise

Header: atlwin.h

Voir aussi

Référence

CWindow, classe

CWindow::GetWindowRect

RECT