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
selectionStart
property applies only to inputs of types text, search, URL, tel, and password. In modern browsers, throws an exception while settingselectionStart
property on the rest of input types. Additionally, this property returnsnull
while accessingselectionStart
property 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);