menu
AccessibilityActionScrollTextRangeIntoView
import { AccessibilityActionScrollTextRangeIntoView } from "destack:accessibility/binding";
Scroll text range into view action.
1export struct AccessibilityActionScrollTextRangeIntoView {2 kind: "scrollTextRangeIntoView";3 header: AccessibilityActionHeader;4 range: AccessibilityTextRange;5 alignToStart: boolean;6}Members
kind: "scrollTextRangeIntoView"Action discriminator.
header: AccessibilityActionHeaderAction header.
range: AccessibilityTextRangeRequested text range.
alignToStart: booleanWhether the range should align to the leading edge when possible.