CWindow::IsIconic

BOOL IsIconic( ) const;

See IsIconic in the Win32 SDK.

Remarks

Determines whether the window is minimized.

Example

//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(hWndFoo);
BOOL bIconic  = myWindow.IsIconic();

CWindow OverviewClass Members

See Also   CWindow::IsZoomed