# AccessibilityActionScrollTextRangeIntoView

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

Scroll text range into view action.

```ds title="AccessibilityActionScrollTextRangeIntoView"
export struct AccessibilityActionScrollTextRangeIntoView {
    kind: "scrollTextRangeIntoView";
    header: AccessibilityActionHeader;
    range: AccessibilityTextRange;
    alignToStart: boolean;
}
```

[language/library/src/accessibility/binding/action.ds:319:328](https://github.com/destack-sh/destack/blob/main/language/library/src/accessibility/binding/action.ds#L319-L328)

## 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.
