Partilhar via


CWindow::IsIconic

Determina se a janela está minimizada.

BOOL IsIconic( ) const throw();

Comentários

See IsIconic in the Windows SDK.

Exemplo

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

Requisitos

Cabeçalho: atlwin.h

Consulte também

Referência

Classe CWindow

CWindow::IsZoomed

Outros recursos

CWindow membros