Vcl.Controls.TInteractiveGestureOption

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TInteractiveGestureOption = (igoPanSingleFingerHorizontal,
igoPanSingleFingerVertical, igoPanInertia, igoPanGutter,
igoParentPassthrough);

C++

enum DECLSPEC_DENUM TInteractiveGestureOption : unsigned char { igoPanSingleFingerHorizontal, igoPanSingleFingerVertical, igoPanInertia, igoPanGutter, igoParentPassthrough };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

Enumerates the possible options for an interactive gesture.

TInteractiveGestureOption enumerates a set of options for interactive gestures. These options enable or disable specific behavior in interactive gestures.


The possible values for TInteractiveGestureOption are the following:

Value Meaning

igoPanSingleFingerHorizontal

The panning gesture is emitted when one finger is moved horizontally.

igoPanSingleFingerVertical

The panning gesture is emitted when one finger is moved vertically.

igoPanInertia

The panning gesture is emitted also for inertia. When you take the finger off the surface, the panning events continue, but decrease, simulating the effect of inertia.

igoPanGutter

The panning gesture is enabled for gutters.

igoParentPassthrough

Unprocessed interactive gestures are passed through down to the parent control.


See Also