CWindow::IsIconic
确定是否窗口最小化。
BOOL IsIconic( ) const throw();
备注
在参见 Windows SDK的 IsIconic。
示例
//The following example attaches an HWND to the CWindow object and
//calls CWindow::IsIconic() to determine if the window is minimized
CWindow myWindow;
myWindow.Attach(hWnd);
BOOL bIconic = myWindow.IsIconic();
要求
Header: atlwin.h