FMX.Types.TTouchAction
Delphi
TTouchAction = (None, Up, Down, Move, Cancel);
C++
enum class DECLSPEC_DENUM TTouchAction : unsigned int { None, Up, Down, Move, Cancel };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | FMX.Types |
Description
Represents the action performed by a TTouch gesture.
TTouchAction can have the following values:
| TTouchAction | Description |
|---|---|
|
|
Occurs when a finger or other touch device touches the screen. |
|
|
Occurs when a finger or other touch device is removed or lifted from the screen. |
|
|
Occurs when a finger or other touch device moves but is not performing a Down or an Up action. |
|
|
A default value; should never occur in reality. |
|
|
Cancels the gesture. |