Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 682 Bytes

IsZoomed.md

File metadata and controls

45 lines (29 loc) · 682 Bytes

Home

Function name : IsZoomed

Group: Window - Library: user32


The IsZoomed function determines whether a window is maximized.


Declaration:

BOOL IsZoomed(
	HWND hWnd
);  

FoxPro declaration:

DECLARE INTEGER IsZoomed IN user32;
	INTEGER hWnd
  

Parameters:

hWnd [in] Handle to the window to test.


Return value:

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


Comments:

See the IsIconic function.