Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The TextUpdateEvent() constructor returns a new TextUpdateEvent object.
new TextUpdateEvent(type)
new TextUpdateEvent(type, options)typeA string representing the type of the event. Possible values: "textupdate".
options OptionalAn optional object with the following properties:
updateRangeStartA number representing the offset of the first character within the editable region text that needs to be updated.
updateRangeEndA number representing the offset of the last character within the editable region text that needs to be updated.
textA string representing the text that needs to be inserted.
selectionStartA number representing the offset of the selection start within the editable region text.
selectionEndA number representing the offset of the selection end within the editable region text.
compositionStartA number representing the offset of the start of the composition within the editable region text.
compositionEndA number representing the offset of the end of the composition within the editable region text.
TextUpdateEvent interface it belongs to.