FMX.Types.TGestureOptions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TGestureOptions = set of TGestureOption;

C++

typedef System::Set<TGestureOption, _DELPHI_SET_ENUMERATOR(TGestureOption::UniDirectional), _DELPHI_SET_ENUMERATOR(TGestureOption::Rotate)> TGestureOptions;

Properties

Type Visibility Source Unit Parent
set
typedef
public
FMX.Types.pas
FMX.Types.hpp
FMX.Types FMX.Types

Description

Specifies a set of possible gesture options.

TGestureOptions is a set of gesture options. The TGestureOptions set is used in gesture recognition algorithms to properly identify a gesture.


The possible values of TGestureOptions are listed in the following table:

Value Meaning

goDirectional

The direction of the gesture is important.

Skew

The skew of the gesture is important.

Endpoint

The endpoint of the gesture should match the starting point.


See Also