FMX.Controls.TControl.OnTap

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnTap: TTapEvent read FOnTap write FOnTap;

C++

__property Fmx::Types::TTapEvent OnTap = {read=FOnTap, write=FOnTap};

Properties

Type Visibility Source Unit Parent
event published
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TControl

Description

Occurs when a user taps the control using a finger or a similar device (not a mouse).

Write an event handler for OnTap to specify what happens when the user taps the form.

Events occur in the following order:

  1. OnTap
  2. OnSelectCell
  3. OnSelChanged

See Also