Vcl.ComCtrls.TCustomListView.DoGesture

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoGesture(const EventInfo: TGestureEventInfo; var Handled: Boolean); override;

C++

virtual void __fastcall DoGesture(const Vcl::Controls::TGestureEventInfo &EventInfo, bool &Handled);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomListView

Description

Processes the unhandled gesturing events.

Vcl.ComCtrls.TCustomListView.DoGesture inherits from Vcl.Controls.TControl.DoGesture. All content below this line refers to Vcl.Controls.TControl.DoGesture.

Processes the unhandled gesturing events.

DoGesture is run automatically for all gesturing events that were not handled by the user. DoGesture is run only if OnGesture is not set or if it did not handle the gesture event.

Override DoGesture in descending classes to support default behavior for gesture events that were not handled by the user. In TControl, the DoGesture method simply returns and does no special processing.

See Also