Enum GestureType
Enumeration of values that represent different gestures that can be processed by ReadGesture().
[Flags]
public enum GestureType
Fields
DoubleTap = 256The user tapped the device twice which is always preceded by a Tap gesture.
DragComplete = 2States completion of a drag gesture(VerticalDrag, HorizontalDrag, or FreeDrag).
Flick = 4States that a touch was combined with a quick swipe.
FreeDrag = 8The user touched a point and then performed a free-form drag.
Hold = 16The user touched a single point for approximately one second.
HorizontalDrag = 32The user touched the screen and performed either left to right or right to left drag gesture.
None = 0No gestures.
Pinch = 64The user either converged or diverged two touch-points on the screen which is like a two-finger drag.
PinchComplete = 128An in-progress pinch operation was completed.
Tap = 1The user touched a single point.
VerticalDrag = 512The user touched the screen and performed either top to bottom or bottom to top drag gesture.