web api instance method
EditContext: updateSelectionBounds() method
Limited availability
The EditContext.updateSelectionBounds() method of the EditContext interface is used to inform the operating system about the bounds of the text selection within the editable region that’s associated with the EditContext object.
Call this method to tell the operating system the bounds of the user’s current selection. You should call the method whenever the user’s selection changes in the editable region. The selection bounds are used by the operating system to help position the IME window or any other platform-specific editing-related UI surfaces.
Syntax
updateSelectionBounds(selectionBounds)
Parameters
selectionBounds- : A
DOMRectobject representing the new selection bounds.
- : A
Return value
None (undefined).
Exceptions
TypeError- : Thrown if the method is called with no arguments or if the provided argument is not a
DOMRectobject.
- : Thrown if the method is called with no arguments or if the provided argument is not a
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The
EditContextinterface it belongs to.