Vcl.Controls.TInteractiveGesture
Delphi
TInteractiveGesture = (igZoom, igPan, igRotate, igTwoFingerTap, igPressAndTap);
C++
enum DECLSPEC_DENUM TInteractiveGesture : unsigned char { igZoom, igPan, igRotate, igTwoFingerTap, igPressAndTap };
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| enum | public | Vcl.Controls.pas Vcl.Controls.hpp | Vcl.Controls | Vcl.Controls | 
Description
Enumerates the supported interactive gestures.
TInteractiveGesture enumerates the interactive gestures supported by the VCL framework.
The possible values of TInteractiveGesture are listed in the following table: 
| Value | Meaning | 
|---|---|
| igZoom | The "Zoom" gesture; requires the use of two fingers. | 
| igPan | The "Pan" gesture. Used for scrolling; requires just one finger. | 
| igRotate | The "Rotate" gesture. Used to rotate UI elements; requires two fingers. | 
| igTwoFingerTap | The "Two Finger Tap" gesture; requires two fingers. | 
| igPressAndTap | The "Press And Tap" gesture; requires two fingers, one to hold pressed and one to tap. |