|
2833 | 2833 | Scroll backward action, callback argument is not set. |
2834 | 2834 | </constant> |
2835 | 2835 | <constant name="ACTION_SCROLL_DOWN" value="12" enum="AccessibilityAction"> |
2836 | | - Scroll down action, callback argument is not set. |
| 2836 | + Scroll down action, callback argument is set to [enum AccessibilityScrollUnit]. |
2837 | 2837 | </constant> |
2838 | 2838 | <constant name="ACTION_SCROLL_FORWARD" value="13" enum="AccessibilityAction"> |
2839 | 2839 | Scroll forward action, callback argument is not set. |
2840 | 2840 | </constant> |
2841 | 2841 | <constant name="ACTION_SCROLL_LEFT" value="14" enum="AccessibilityAction"> |
2842 | | - Scroll left action, callback argument is not set. |
| 2842 | + Scroll left action, callback argument is set to [enum AccessibilityScrollUnit]. |
2843 | 2843 | </constant> |
2844 | 2844 | <constant name="ACTION_SCROLL_RIGHT" value="15" enum="AccessibilityAction"> |
2845 | | - Scroll right action, callback argument is not set. |
| 2845 | + Scroll right action, callback argument is set to [enum AccessibilityScrollUnit]. |
2846 | 2846 | </constant> |
2847 | 2847 | <constant name="ACTION_SCROLL_UP" value="16" enum="AccessibilityAction"> |
2848 | | - Scroll up action, callback argument is not set. |
| 2848 | + Scroll up action, callback argument is set to [enum AccessibilityScrollUnit]. |
2849 | 2849 | </constant> |
2850 | 2850 | <constant name="ACTION_SCROLL_INTO_VIEW" value="17" enum="AccessibilityAction"> |
2851 | | - Scroll into view action, callback argument is not set. |
| 2851 | + Scroll into view action, callback argument is set to [enum AccessibilityScrollHint]. |
2852 | 2852 | </constant> |
2853 | 2853 | <constant name="ACTION_SCROLL_TO_POINT" value="18" enum="AccessibilityAction"> |
2854 | 2854 | Scroll to point action, callback argument is set to [Vector2] with the relative point coordinates. |
|
2874 | 2874 | <constant name="LIVE_ASSERTIVE" value="2" enum="AccessibilityLiveMode"> |
2875 | 2875 | Indicates that updates to the live region have the highest priority and should be presented immediately. |
2876 | 2876 | </constant> |
| 2877 | + <constant name="SCROLL_UNIT_ITEM" value="0" enum="AccessibilityScrollUnit"> |
| 2878 | + The amount by which to scroll. A single item of a list, line of text. |
| 2879 | + </constant> |
| 2880 | + <constant name="SCROLL_UNIT_PAGE" value="1" enum="AccessibilityScrollUnit"> |
| 2881 | + The amount by which to scroll. A single page. |
| 2882 | + </constant> |
| 2883 | + <constant name="SCROLL_HINT_TOP_LEFT" value="0" enum="AccessibilityScrollHint"> |
| 2884 | + A preferred position for the node scrolled into view. Top-left edge of the scroll container. |
| 2885 | + </constant> |
| 2886 | + <constant name="SCROLL_HINT_BOTTOM_RIGHT" value="1" enum="AccessibilityScrollHint"> |
| 2887 | + A preferred position for the node scrolled into view. Bottom-right edge of the scroll container. |
| 2888 | + </constant> |
| 2889 | + <constant name="SCROLL_HINT_TOP_EDGE" value="2" enum="AccessibilityScrollHint"> |
| 2890 | + A preferred position for the node scrolled into view. Top edge of the scroll container. |
| 2891 | + </constant> |
| 2892 | + <constant name="SCROLL_HINT_BOTTOM_EDGE" value="3" enum="AccessibilityScrollHint"> |
| 2893 | + A preferred position for the node scrolled into view. Bottom edge of the scroll container. |
| 2894 | + </constant> |
| 2895 | + <constant name="SCROLL_HINT_LEFT_EDGE" value="4" enum="AccessibilityScrollHint"> |
| 2896 | + A preferred position for the node scrolled into view. Left edge of the scroll container. |
| 2897 | + </constant> |
| 2898 | + <constant name="SCROLL_HINT_RIGHT_EDGE" value="5" enum="AccessibilityScrollHint"> |
| 2899 | + A preferred position for the node scrolled into view. Right edge of the scroll container. |
| 2900 | + </constant> |
2877 | 2901 | <constant name="MOUSE_MODE_VISIBLE" value="0" enum="MouseMode"> |
2878 | 2902 | Makes the mouse cursor visible if it is hidden. |
2879 | 2903 | </constant> |
|
0 commit comments