AccessibilityScrollDirection
Describes the direction of a scrolling action.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Enum
- Namespace: UnityEngine.Accessibility
- Assembly: UnityEngine.AccessibilityModule
public enum AccessibilityScrollDirection : byte
Remarks
The values in this enumeration are used by the _scrolled event, which is sent when a screen reader user performs a scrolling action.
Additional Resources:
Fields
Value | Description |
|---|---|
| Backward | The user is scrolling backward. |
| Down | The user is scrolling from top to bottom. |
| Forward | The user is scrolling forward. |
| Left | The user is scrolling from right to left. |
| Right | The user is scrolling from left to right. |
| Unknown | The direction of the scrolling action is unknown. |
| Up | The user is scrolling from bottom to top. |