Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 808 Bytes

IsWindowEnabled.md

File metadata and controls

41 lines (28 loc) · 808 Bytes

Home

Function name : IsWindowEnabled

Group: Keyboard Input - Library: user32


The IsWindowEnabled function determines whether the specified window is enabled for mouse and keyboard input.


Code examples:

Using the IsWindowEnabled function

Declaration:

BOOL IsWindowEnabled(
  HWND hWnd   // handle to window
);  

FoxPro declaration:

DECLARE INTEGER IsWindowEnabled IN user32;
	INTEGER hwnd  

Parameters:

hWnd [in] Handle to the window to test.


Return value:

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