Focuses as close as possible to the reading position. If the reading position is within a text node,
a temporary wrapper element is created around the nearest character to enable focus. This provides
more precise focus positioning than NEAREST_ELEMENT.
Focuses on the closest element that matches the reading position. If the reading position is inside a Text node, the focus will be applied on the nearest ancestor Element or sibling Element.
Focuses on the sentence or the nearest element boundary as close as possible to the reading position. If the reading
position is within a text node, a temporary wrapper element is created around the nearest sentence to enable focus.
This provides more precise focus positioning than NEAREST_ELEMENT, especially useful for screen readers.
NOTE: This option relies on the Intl.Segmenter API, and for browsers that do not support it, we fall back to
the NEAREST_WORD.
Focuses on the word as close as possible to the reading position. If the reading position is within a text node,
a temporary wrapper element is created around the nearest word to enable focus. This provides
more precise focus positioning than NEAREST_ELEMENT, especially useful for screen readers.
Disables focus at the reading position. Focus may still be applied to the page container or page body if those options are enabled.
Option values used with
IFocusOnReadingPositionTargetOptions.target