[ enum ] KeyAction

Description:

Keyboard key actions. Used with ui.keyboardAction(action, value) to perform key actions.

Type: number

Properties:

Name Description

Press

Key press.

Release

Key release.

Type

Key typed (typed character input).

Examples:

Performing a key type action:

ui.keyboardAction(KeyAction.Type, "A");

Also See: