FMX.Types.TCustomGestureManager.RemoveRecordedGesture

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RemoveRecordedGesture(AGestureID: TGestureID); overload; virtual; abstract;
procedure RemoveRecordedGesture(const AGesture: TCustomGestureCollectionItem); overload; virtual; abstract;

C++

virtual void __fastcall RemoveRecordedGesture(TGestureID AGestureID) = 0 /* overload */;
virtual void __fastcall RemoveRecordedGesture(TCustomGestureCollectionItem* const AGesture) = 0 /* overload */;

Properties

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

Description

Removes a recorded gesture from the gesture manager.

Override RemoveRecordedGesture in descending classes to implement support for removing recorded gestures from the gesture manager component.

RemoveRecordedGesture expects a TGestureID parameter specifying the ID of the recorded gesture to remove.

See Also