The IsIconic function determines whether the specified window is minimized (iconic).
Syntax
BOOL IsIconic(
HWND hWnd
);
Parameters
- hWnd
-
[in] Handle to the window to test.
Return Value
If the window is iconic, the return value is nonzero.
If the window is not iconic, the return value is zero.
Example
For an example, see Drawing a Minimized Window.
Function Information
| Minimum DLL Version | user32.dll |
|---|
| Header | Declared in Winuser.h, include Windows.h |
|---|
| Import library | User32.lib |
|---|
| Minimum operating systems |
Windows 95, Windows NT 3.1 |
|---|
| Unicode | Implemented as
Unicode version. |
|---|
See Also