Partager via


CWindow::IsIconic

Détermine si la fenêtre est réduite.

BOOL IsIconic( ) const throw();

Notes

Consultez l' IsIconic dans Kit de développement logiciel Windows.

Exemple

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

Configuration requise

Header: atlwin.h

Voir aussi

Référence

Classe de CWindow

CWindow::IsZoomed