[ enum ] KeyAction
Description:
Keyboard key actions. Used with ui.keyboardAction(action, value) to perform key actions.
Type: number
Properties:
| Name | Description |
|---|---|
|
Key press. |
|
Key release. |
|
Key typed (typed character input). |
Examples:
Performing a key type action:
ui.keyboardAction(KeyAction.Type, "A");
