Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. EditContext
  4. updateControlBounds()

EditContext: updateControlBounds() method

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Experimental:This is anexperimental technology
Check theBrowser compatibility table carefully before using this in production.

TheEditContext.updateControlBounds() method of theEditContext interface is used to inform the operating system about the position and size of the editable text region of theEditContext object.

Call this method to tell the operating system the bounds of the current editable region. You should call it when initializing the EditContext, and whenever the editable region's bounds change such as when the webpage is resized. These bounds are used to position platform-specific editing-related UI surfaces such as anInput Method Editor (IME) window.

Syntax

js
updateControlBounds(controlBounds)

Parameters

controlBounds

ADOMRect object representing the new control bounds.

Return value

None (undefined).

Exceptions

TypeError

Thrown if the method is called with no arguments or if the provided argument is not aDOMRect object.

Examples

Updating the control bounds when the editor is initialized and on window resize

This example shows how to use theupdateControlBounds() method to tell the platform where the editable region is at all times.

css
#editor {  border: 1px solid black;  height: 50vw;  width: 50vh;}
html
<div></div>
js
const editorEl = document.getElementById("editor");const editContext = new EditContext();editorEl.editContext = editContext;function updateControlBounds() {  const editorBounds = editorEl.getBoundingClientRect();  editContext.updateControlBounds(editorBounds);  console.log(    `Updated control bounds to ${editorBounds.x}, ${editorBounds.y}, ${editorBounds.width}, ${editorBounds.height}`,  );}// Update the control bounds now.updateControlBounds();// And when the page is resized.window.addEventListener("resize", updateControlBounds);

Specifications

Specification
EditContext API
# dom-editcontext-updatecontrolbounds

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp