# AccessibilityScrollDirection

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

Scroll direction for one accessibility action.

```ds title="AccessibilityScrollDirection"
export enum AccessibilityScrollDirection {
    Forward = 1,
    Backward = 2,
    Up = 3,
    Down = 4,
    Left = 5,
    Right = 6,
    PageUp = 7,
    PageDown = 8,
    PageLeft = 9,
    PageRight = 10,
}
```

[language/library/src/accessibility/binding/action.ds:41:62](https://github.com/destack-sh/destack/blob/main/language/library/src/accessibility/binding/action.ds#L41-L62)

## Variants

### `Forward = 1`

Scroll forward in the node's primary reading direction.

### `Backward = 2`

Scroll backward in the node's primary reading direction.

### `Up = 3`

Scroll upward.

### `Down = 4`

Scroll downward.

### `Left = 5`

Scroll leftward.

### `Right = 6`

Scroll rightward.

### `PageUp = 7`

Scroll one page upward.

### `PageDown = 8`

Scroll one page downward.

### `PageLeft = 9`

Scroll one page leftward.

### `PageRight = 10`

Scroll one page rightward.
