FocusNavigationDirection 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.
Specifies the direction that you can programmatically move focus from one element to another element within the app UI.
public enum class FocusNavigationDirection
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.WinUIContract, 65536)]
enum class FocusNavigationDirection
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
public enum FocusNavigationDirection
Public Enum FocusNavigationDirection
- Inheritance
-
FocusNavigationDirection
- Attributes
Fields
Next | 0 | The next element in the tab order. |
Previous | 1 | The previous element in the tab order. |
Up | 2 | An element above the element with focus. |
Down | 3 | An element below the element with focus. |
Left | 4 | An element to the left of the element with focus. |
Right | 5 | An element to the right of the element with focus. |
None | 6 | No change in focus. |
Remarks
FocusNavigationDirection.Previous
and FocusNavigationDirection.Next
cannot be used with FindNextElementOptions. Only FocusNavigationDirection.Up
, FocusNavigationDirection.Down
, FocusNavigationDirection.Left
, or FocusNavigationDirection.Right
are valid.