GestureSettings 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.
Represents the set of gestures that may be recognized by a GestureRecognizer.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum GestureSettings
[<System.Flags>]
type GestureSettings =
Public Enum GestureSettings
- Inheritance
-
GestureSettings
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | An empty gesture setting |
Tap | 1 | A single air tap. |
DoubleTap | 2 | A double air tap |
Hold | 4 | Hold at the end of air tap |
ManipulationTranslate | 8 | Manipulate gesture to control X, Y, and Z translations. |
NavigationX | 16 | Navigation gesture at X direction. |
NavigationY | 32 | Navigation gesture at Y direction. |
NavigationZ | 64 | Navigation gesture at Z direction. |
NavigationRailsX | 128 | Navigation gesture at X direction and suppress Y and Z direction. |
NavigationRailsY | 256 | Navigation gesture at Y direction and suppress X and Z direction. |
NavigationRailsZ | 512 | Navigation gesture at Z direction and suppress X and Y direction. |