Vcl.Controls.TCustomGestureCollection.RemoveGesture

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RemoveGesture(AGestureID: TGestureID); virtual; abstract;

C++

virtual void __fastcall RemoveGesture(TGestureID AGestureID) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TCustomGestureCollection

Description

Removes a gesture from the collection.

Override RemoveGesture in descending classes to implement proper removal of gestures from the collection. RemoveGesture expects a parameter storing the ID of the gesture to remove. RemoveGesture removes the gesture from its internal list. The search for the gesture to be removed is performed by the ID given as the parameter. If the ID being searched for is not found, nothing happens.

See Also