selectionStart property
int?
get
selectionStart
The selectionStart property of the HTMLInputElement interface is a
number that represents the beginning index of the selected text. When
nothing is selected, then returns the position of the text input cursor
(caret) inside of the <input> element.
Note: According to the WHATWG forms spec
selectionStartproperty applies only to inputs of types text, search, URL, tel, and password. In modern browsers, throws an exception while settingselectionStartproperty on the rest of input types. Additionally, this property returnsnullwhile accessingselectionStartproperty on non-text input elements.
If selectionStart is greater than selectionEnd, then both are
treated as the value of selectionEnd.
Implementation
external int? get selectionStart;
set
selectionStart
(int? value)
Implementation
external set selectionStart(int? value);