Vcl.Controls.TCustomGestureManager.RemoveRecordedGesture

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls 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