Sdílet prostřednictvím


CWindow::GetClientRect

Načte souřadnice oblasti klienta.

BOOL GetClientRect( 
   LPRECT lpRect  
) const throw();

Poznámky

Viz GetClientRect v .

Příklad

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

Požadavky

Záhlaví: atlwin.h

Viz také

Referenční dokumentace

Třída CWindow

CWindow::GetWindowRect

RECT