API:FMX.Gestures.TGestureManager.SetStandardGestures

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetStandardGestures(AControl: TComponent; AStandardGestures: TStandardGestures); override;

C++

virtual void __fastcall SetStandardGestures(System::Classes::TComponent* AControl, const Fmx::Types::TStandardGestures &AStandardGestures);

Properties

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

Description

Associates a set of standard gestures with a control.

FMX.Gestures.TGestureManager.SetStandardGestures inherits from FMX.Types.TCustomGestureManager.SetStandardGestures. All content below this line refers to FMX.Types.TCustomGestureManager.SetStandardGestures.

Associates a set of standard gestures with a control.

Override the SetStandardGestures method in descending classes to implement a proper code that associates a set of standard gestures with a control.

SetStandardGestures is used to associate a set of standard gestures with a given control. SetStandardGestures expects two parameters, AControl and AStandardGestures. AControl is the control to which the gestures are being assigned and AStandardGestures is a set of standard gestures to be associated with the control.

GetStandardGestures is the setter method for the StandardGestures property.

See Also