IsWindowEnabled function
Determines whether the specified window is enabled for mouse and keyboard input.
Syntax
BOOL WINAPI IsWindowEnabled( _In_ HWND hWnd );
Parameters
- hWnd [in]
-
Type: HWND
A handle to the window to be tested.
Return value
Type: BOOL
If the window is enabled, the return value is nonzero.
If the window is not enabled, the return value is zero.
Remarks
A child window receives input only if it is both enabled and visible.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also
- Reference
- EnableWindow
- IsWindowVisible
- Conceptual
- Keyboard Input
Show: