OnKeyEventEvent class
This event is sent if this extension owns the active IME.
class OnKeyEventEvent { /** * ID of the engine receiving the event */ final String engineID; /** * Data on the key event */ final KeyboardEvent keyData; OnKeyEventEvent(this.engineID, this.keyData); }
Constructors
new OnKeyEventEvent(String engineID, KeyboardEvent keyData) #
Creates a new Object
instance.
Object
instances have no meaningful state, and are only useful
through their identity. An Object
instance is equal to itself
only.
docs inherited from Object
OnKeyEventEvent(this.engineID, this.keyData);
Properties
final String engineID #
ID of the engine receiving the event
final String engineID
final KeyboardEvent keyData #
Data on the key event
final KeyboardEvent keyData