Vcl.Controls.TInteractiveGestures

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TInteractiveGestures = set of TInteractiveGesture;

C++

typedef System::Set<TInteractiveGesture, TInteractiveGesture::igZoom, TInteractiveGesture::igPressAndTap> TInteractiveGestures;

Properties

Type Visibility Source Unit Parent
set
typedef
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

Specifies a set of interactive gestures.

TInteractiveGestures is a set of interactive gestures.


TInteractiveGestures can have one or more of the following values:

Value Meaning

igZoom

The "Zoom" gesture. Requires the use of two fingers.

igPan

The "Pan" gesture. Used for scrolling and 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.


See Also