FMX.Gestures.TGestureManager.RemoveRecordedGesture

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RemoveRecordedGesture(AGestureID: TGestureID); override;
procedure RemoveRecordedGesture(const AGesture: TCustomGestureCollectionItem); override;

C++

virtual void __fastcall RemoveRecordedGesture(Fmx::Types::TGestureID AGestureID)/* overload */;
virtual void __fastcall RemoveRecordedGesture(Fmx::Types::TCustomGestureCollectionItem* const AGesture)/* overload */;

Properties

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

Description

Removes a recorded gesture from the gesture manager.

The RemoveRecordedGesture method implements support for removing recorded gestures from the gesture manager component.

There are two forms of this method. The first form of RemoveRecordedGesture expects a TGestureID parameter specifying the ID of the recorded gesture to remove. The second form of RemoveRecordedGesture expects a TCustomGestureCollectionItem parameter specifying the exact item to remove.

See Also