Properties:
Methods:
The ScreenTapGesture class represents a tapping gesture by a finger or tool.
Public Functions
PropertyScreenTapGesture()Constructs a new ScreenTapGesture object.
An uninitialized ScreenTapGesture object is considered invalid. Get valid instances of the ScreenTapGesture class from a Frame object.
ScreenTapGesture(Gesture rhs)Constructs a ScreenTapGesture object from an instance of the Gesture class.
if (gesture.Type == Gesture.GestureType.TYPE_SCREEN_TAP) { ScreenTapGesture screentapGesture = new ScreenTapGesture (gesture); }
- Parameters
- rhs -
The Gesture instance to specialize. This Gesture instance must be a ScreenTapGesture object.
Public Static FunctionsGesture.GestureType ClassType()The screen tap gesture type.
if (gesture.Type == ScreenTapGesture.ClassType ()) { ScreenTapGesture screentapGesture = new ScreenTapGesture (gesture); }
- Return
- Type The type value designating a screen tap gesture.