Enum EventType
Represents the type of an input event.
Namespace: SharpHook.Native
Assembly: SharpHook.dll
Syntax
public enum EventType
Fields
Name | Description |
---|---|
HookDisabled | Raised when the global hook is stopped. |
HookEnabled | Raised when the global hook is started. |
KeyPressed | Raised when a key is pressed. |
KeyReleased | Raised when a key is released. |
KeyTyped | Raised when a character is typed. |
MouseClicked | Raised when a mouse button is clicked. |
MouseDragged | Raised when the mouse is dragged. |
MouseMoved | Raised when the mouse is moved. |
MousePressed | Raised when a mouse button is pressed. |
MouseReleased | Raised when a mouse button is released. |
MouseWheel | Raised when the mouse wheel is scrolled. |