CWindow::GetClientRect
クライアント領域の座標を取得します。
BOOL GetClientRect(
LPRECT lpRect
) const throw();
解説
Windows SDK の「GetClientRect」を参照してください。
使用例
//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);
必要条件
**ヘッダー:**atlwin.h