InputImeSetCursorPositionParams class
class InputImeSetCursorPositionParams extends ChromeObject { InputImeSetCursorPositionParams({int contextID, int candidateID}) { if (contextID != null) this.contextID = contextID; if (candidateID != null) this.candidateID = candidateID; } InputImeSetCursorPositionParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy); /** * ID of the context that owns the candidate window. */ int get contextID => jsProxy['contextID']; set contextID(int value) => jsProxy['contextID'] = value; /** * ID of the candidate to select. */ int get candidateID => jsProxy['candidateID']; set candidateID(int value) => jsProxy['candidateID'] = value; }
Extends
ChromeObject > InputImeSetCursorPositionParams
Constructors
new InputImeSetCursorPositionParams({int contextID, int candidateID}) #
Create a new instance of a ChromeObject
, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
InputImeSetCursorPositionParams({int contextID, int candidateID}) { if (contextID != null) this.contextID = contextID; if (candidateID != null) this.candidateID = candidateID; }
new InputImeSetCursorPositionParams.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject
, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
InputImeSetCursorPositionParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
int candidateID #
ID of the candidate to select.
int get candidateID => jsProxy['candidateID'];
set candidateID(int value) => jsProxy['candidateID'] = value;
int contextID #
ID of the context that owns the candidate window.
int get contextID => jsProxy['contextID'];
set contextID(int value) => jsProxy['contextID'] = value;
Methods
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();