Compartir a través de


CWindow::IsIconic

determina si la ventana está minimizada.

BOOL IsIconic( ) const throw();

Comentarios

Vea IsIconic en Windows SDK.

Ejemplo

//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

encabezado: atlwin.h

Vea también

Referencia

Clase de CWindow

CWindow::IsZoomed