FMX.Types.TTapEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TTapEvent = procedure(Sender: TObject; const Point: TPointF) of object;

C++

typedef void __fastcall (__closure *TTapEvent)(System::TObject* Sender, const System::Types::TPointF &Point);

Properties

Type Visibility Source Unit Parent
type
typedef
public
FMX.Types.pas
FMX.Types.hpp
FMX.Types FMX.Types

Description

Procedural type that is used for tap-related events.

A TTapEvent event handler must be called with the following parameters:

  • Sender--a pointer to the object that called this function.
  • Point--the pixel coordinates of the pointer within the client area.

See Also