KeyInputEvent

class Event.KeyInputEvent()

Accessors

Event.KeyInputEvent.viewKey()

inherited

get viewKey(): ViewKey

Get the ViewKey this event is associated with.

Returns: ViewKey

Methods

Event.KeyInputEvent.getDate()

inherited

getDate(): Date

Gets the Date this event occurred

Returns: Date

the event Date
Event.KeyInputEvent.getEventType()
getEventType(): KeyInputType

gets the event type

Returns: KeyInputType

the type of key event
Event.KeyInputEvent.getHandled()

inherited

getHandled(): boolean

Gets the handled state of the event

Returns: boolean

whether the event has been handled
Event.KeyInputEvent.getKeyCode()
getKeyCode(): number

gets the key code

Returns: number

the key code of the event
Event.KeyInputEvent.setHandled()

inherited

setHandled(handled: boolean): void

Sets the handled state of the event. When an event has been handled it will not propagate any further

Parameters

handled: boolean

Indicates whether this event has been handled.

Returns: void