FMX.Types.TCustomGestureManager.GetGestureList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetGestureList(AControl: TComponent): TGestureArray; virtual; abstract;

C++

virtual TGestureArray __fastcall GetGestureList(System::Classes::TComponent* AControl) = 0 ;

Properties

Type Visibility Source Unit Parent
function protected
FMX.Types.pas
FMX.Types.hpp
FMX.Types TCustomGestureManager

Description

Returns the list of gestures associated with a control.

Override the GetGestureList method in descending classes to implement proper gesture lookup.

GetGestureList is used to return the gestures associated with a given control. GetGestureList receives a single parameter, AControl.

GetGestureList is the getter method for the GestureList property.

See Also