Udostępnij za pośrednictwem


CWindow::GetClientRect

Pobiera współrzędne obszaru klienta.

BOOL GetClientRect(
   LPRECT lpRect 
) const throw();

Uwagi

Zobacz GetClientRect w Windows SDK.

Przykład

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

Wymagania

Nagłówek: atlwin.h

Zobacz też

Informacje

Klasa CWindow

CWindow::GetWindowRect

RECT