CWindow::IsWindowVisible
确定窗口的可见性状态。
BOOL IsWindowVisible( ) const throw();
备注
在参见 Windows SDK的 IsWindowVisible。
示例
//The following example attaches an HWND to the CWindow object and
//calls CWindow::IsWindowVisible() to determine the visibility state
//of the window
CWindow myWindow;
myWindow.Attach(hWnd);
BOOL bVisible = myWindow.IsWindowVisible();
要求
Header: atlwin.h