Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 789 Bytes

IsIconic.md

File metadata and controls

48 lines (31 loc) · 789 Bytes

Home

Function name : IsIconic

Group: Window - Library: user32


The IsIconic function determines whether the specified window is minimized (iconic).


Code examples:

Minimizing all running applications

Declaration:

BOOL IsIconic(
	HWND hWnd
);  

FoxPro declaration:

DECLARE INTEGER IsIconic IN user32
	INTEGER hWnd
  

Parameters:

hWnd [in] Handle to the window to test.


Return value:

If the window is iconic, the return value is nonzero.


Comments:

See the IsZoomed function.