Action Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum Action
[<System.Flags>]
type Action =
- Inheritance
-
Action
- Attributes
Fields
Name | Value | Description |
---|---|---|
Focus | 1 | Action that gives input focus to the node. |
ClearFocus | 2 | Action that clears input focus of the node. |
Select | 4 | Action that selects the node. |
ClearSelection | 8 | Action that unselects the node. |
Click | 16 | Action that clicks on the node info. |
LongClick | 32 | Action that long clicks on the node. |
AccessibilityFocus | 64 | Action that gives accessibility focus to the node. |
ClearAccessibilityFocus | 128 | Action that clears accessibility focus of the node. |
NextAtMovementGranularity | 256 | |
PreviousAtMovementGranularity | 512 | |
NextHtmlElement | 1024 | |
PreviousHtmlElement | 2048 | |
ScrollForward | 4096 | Action to scroll the node content forward. |
ScrollBackward | 8192 | Action to scroll the node content backward. |
Copy | 16384 | Action to copy the current selection to the clipboard. |
Paste | 32768 | Action to paste the current clipboard content. |
Cut | 65536 | Action to cut the current selection and place it to the clipboard. |
SetSelection | 131072 | |
Expand | 262144 | |
Collapse | 524288 | |
Dismiss | 1048576 | |
SetText | 2097152 |
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.