FMX.Types.TInteractiveGesture

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TInteractiveGesture = (Zoom, Pan, Rotate, TwoFingerTap, PressAndTap, LongTap, DoubleTap);

C++

enum class DECLSPEC_DENUM TInteractiveGesture : unsigned int { Zoom, Pan, Rotate, TwoFingerTap, PressAndTap, LongTap, DoubleTap };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Types.pas
FMX.Types.hpp
FMX.Types FMX.Types

Description

Enumerates the supported interactive gestures.

TInteractiveGesture enumerates the interactive gestures supported by FireMonkey.

The possible values of TInteractiveGesture are listed in the following table (for more information, see FMX.Types.TGestureEventInfo):

Value Meaning

Zoom

The "Zoom" and "Pinch" gestures; requires the use of two fingers.

Pan

The "Pan" gesture. Used for scrolling; requires just one finger.

Rotate

The "Rotate" gesture. Used to rotate UI elements; requires two fingers.

TwoFingerTap

The "Two Finger Tap" gesture; requires two fingers.

PressAndTap

The "Press And Tap" gesture; requires two fingers, one to hold pressed and one to tap.

LongTap

The "Long Tap" gesture (also known as "Tap and hold", "Long Press", or "Press"); requires just one finger. It is used to show the Magnifier Glass for some controls (text controls like TMemo).

DoubleTap

Similar to a double-click. One of the basic survival rules in ZombieLand.


See Also