Version

GestureModes Enumeration

Flagged enumeration which defines gesture modes.
Syntax
'Declaration
 
Public Enum GestureModes 
   Inherits System.Enum
public enum GestureModes : System.Enum 
Members
MemberDescription
AllCombines all bitflags, enabling all gesture events.
NoneNo gesture modes.
PanThe PanGesture event is enabled, as is inertial panning.
PanInertiaWhen combined with the 'PanNoInertia' constant, enables inertial panning. Note that this constant only has significance when combined with the 'PanNoInertia' constant. Assigning this constant alone does not enable panning unless combined with the 'PanNoInertia' constant.
PanNoInertiaThe PanGesture event is enabled, but inertial panning is not enabled. Using this constant as opposed to the 'Pan' constant causes the PanGesture event to stop firing immediately upon the user's loss of contact with the touch surface.
PressAndHoldThe PressAndHoldGesture event is enabled.
PressAndTapThe PressAndTapGesture event is enabled.
RotateThe RotateGesture event is enabled.
TwoFingerTapThe TwoFingerGesture event is enabled.
ZoomThe ZoomGesture event is enabled.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also