Vcl.Touch.GestureCtrls.TGestureRecordedEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TGestureRecordedEvent = procedure(Sender: TObject;
RecordedGesture: TGestureCollectionItem) of object;

C++

typedef void __fastcall (__closure *TGestureRecordedEvent)(System::TObject* Sender, Vcl::Touch::Gesturemgr::TGestureCollectionItem* RecordedGesture);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Vcl.Touch.GestureCtrls.pas
Vcl.Touch.GestureCtrls.hpp
Vcl.Touch.GestureCtrls Vcl.Touch.GestureCtrls

Description

TGestureRecordedEvent is the function type for an OnGestureRecorded event.

Write methods of type TGestureRecordedEvent to connect them to the OnGestureRecorded event.

TGestureRecordedEvent has the parameters listed in the following table.


Value Meaning

Sender

Parent control identifying the gesture recorder control that emitted this event.

RecordedGesture

The gesture that was recorded.



See Also