次の方法で共有


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

参照

関連項目

CWindow クラス

CWindow::IsZoomed