FMX.Gestures.TGestureManager.GetGestureList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetGestureList(Control: TComponent): TGestureArray; override;

C++

virtual Fmx::Types::TGestureArray __fastcall GetGestureList(System::Classes::TComponent* Control);

Properties

Type Visibility Source Unit Parent
function protected
FMX.Gestures.pas
FMX.Gestures.hpp
FMX.Gestures TGestureManager

Description

Returns the list of gestures associated with a control.

GetGestureList returns a list of gestures in the form of a TGestureArray associated with a control.

GetGestureList is used to return the gestures associated with a given control. GetGestureList receives a single parameter, AControl, which represents the control on which the search is being performed.

GetGestureList is the getter method for the GestureList property.

See Also