CWindow::IsIconic

Determina se la finestra è ridotta a icona.

BOOL IsIconic( ) const throw();

Note

Vedere IsIconic in Windows SDK.

Esempio

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

Requisiti

Header: atlwin.h

Vedere anche

Riferimenti

Classe di CWindow

CWindow::IsZoomed