Vcl.Controls.TInteractiveGestureOptions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TInteractiveGestureOptions = set of TInteractiveGestureOption;

C++

typedef System::Set<TInteractiveGestureOption, TInteractiveGestureOption::igoPanSingleFingerHorizontal, TInteractiveGestureOption::igoParentPassthrough> TInteractiveGestureOptions;

Properties

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

Description

Specifies the possible options for an interactive gesture.

TInteractiveGestureOptions is a set of options for interactive gestures. These options enable or disable specific behavior in interactive gestures.


TInteractiveGestureOptions can have one or more of the following values:

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