OnCandidateClickedEvent class
This event is sent if this extension owns the active IME.
class OnCandidateClickedEvent {
/**
* ID of the engine receiving the event
*/
final String engineID;
/**
* ID of the candidate that was clicked.
*/
final int candidateID;
/**
* Which mouse buttons was clicked.
* enum of `left`, `middle`, `right`
*/
final String button;
OnCandidateClickedEvent(this.engineID, this.candidateID, this.button);
}
Constructors
new OnCandidateClickedEvent(String engineID, int candidateID, String button) #
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
OnCandidateClickedEvent(this.engineID, this.candidateID, this.button);