Поделиться через


CWindow::IsIconic

Определяет свернуто ли окно.

BOOL IsIconic( ) const throw();

Заметки

См. раздел IsIconic в Windows SDK.

Пример

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

CWindow::IsZoomed