DispatchKeyEventParameter

@Serializable
data class DispatchKeyEventParameter(val type: String, val modifiers: Int? = null, val timestamp: Double? = null, val text: String? = null, val unmodifiedText: String? = null, val keyIdentifier: String? = null, val code: String? = null, val key: String? = null, val windowsVirtualKeyCode: Int? = null, val nativeVirtualKeyCode: Int? = null, val autoRepeat: Boolean? = null, val isKeypad: Boolean? = null, val isSystemKey: Boolean? = null, val location: Int? = null, val commands: List<String>? = null)

Constructors

Link copied to clipboard
constructor(type: String, modifiers: Int? = null, timestamp: Double? = null, text: String? = null, unmodifiedText: String? = null, keyIdentifier: String? = null, code: String? = null, key: String? = null, windowsVirtualKeyCode: Int? = null, nativeVirtualKeyCode: Int? = null, autoRepeat: Boolean? = null, isKeypad: Boolean? = null, isSystemKey: Boolean? = null, location: Int? = null, commands: List<String>? = null)

Properties

Link copied to clipboard
val autoRepeat: Boolean? = null

Whether the event was generated from auto repeat (default: false).

Link copied to clipboard
val code: String? = null

Unique DOM defined string value for each physical key (e.g., 'KeyA') (default: "").

Link copied to clipboard
val commands: List<String>? = null

Editing commands to send with the key event (e.g., 'selectAll') (default: []). These are related to but not equal the command names used in document.execCommand and NSStandardKeyBindingResponding. See https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/editing/commands/editor_command_names.h for valid command names.

Link copied to clipboard
val isKeypad: Boolean? = null

Whether the event was generated from the keypad (default: false).

Link copied to clipboard
val isSystemKey: Boolean? = null

Whether the event was a system key event (default: false).

Link copied to clipboard
val key: String? = null

Unique DOM defined string value describing the meaning of the key in the context of active modifiers, keyboard layout, etc (e.g., 'AltGr') (default: "").

Link copied to clipboard
val keyIdentifier: String? = null

Unique key identifier (e.g., 'U+0041') (default: "").

Link copied to clipboard
val location: Int? = null

Whether the event was from the left or right side of the keyboard. 1=Left, 2=Right (default: 0).

Link copied to clipboard
val modifiers: Int? = null

Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8 (default: 0).

Link copied to clipboard

Native virtual key code (default: 0).

Link copied to clipboard
val text: String? = null

Text as generated by processing a virtual key code with a keyboard layout. Not needed for for keyUp and rawKeyDown events (default: "")

Link copied to clipboard
val timestamp: Double? = null

Time at which the event occurred.

Link copied to clipboard

Type of the key event.

Link copied to clipboard
val unmodifiedText: String? = null

Text that would have been generated by the keyboard if no modifiers were pressed (except for shift). Useful for shortcut (accelerator) key handling (default: "").

Link copied to clipboard

Windows virtual key code (default: 0).