FMX.Types.TInteractiveGestureFlag
Delphi
TInteractiveGestureFlag = (gfBegin, gfInertia, gfEnd);
C++
enum class DECLSPEC_DENUM TInteractiveGestureFlag : unsigned int { gfBegin, gfInertia, gfEnd };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | FMX.Types |
Description
Enumerates the possible flags an interactive gesture event can specify.
TInteractiveGestureFlag enumerates a set of flags that are attached to interactive gesturing events. These flags denote the state of an interactive gesture.
The possible values of TInteractiveGestureFlag are listed in the following table:
Value | Meaning |
---|---|
gfBegin |
The interactive gesture just begun. |
gfInertia |
The interactive gesture is continuing inertially. |
gfEnd |
The interactive gesture is ending. |