menu

AccessibilityActionScrollTextRangeIntoView

import { AccessibilityActionScrollTextRangeIntoView } from "destack:accessibility/binding";

Scroll text range into view action.

language/library/src/accessibility/binding/action.ds:319:328
1export struct AccessibilityActionScrollTextRangeIntoView {2    kind: "scrollTextRangeIntoView";3    header: AccessibilityActionHeader;4    range: AccessibilityTextRange;5    alignToStart: boolean;6}

Members

kind: "scrollTextRangeIntoView"

Action discriminator.

header: AccessibilityActionHeader

Action header.

range: AccessibilityTextRange

Requested text range.

alignToStart: boolean

Whether the range should align to the leading edge when possible.