FMX.Forms.TCommonCustomForm.DoTap

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoTap(const Point: TPointF); virtual;

C++

virtual void __fastcall DoTap(const System::Types::TPointF &Point);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

Processes the unhandled OnTap events.

DoTap is run automatically for all tap events that were not handled by the user. DoTap is run only if OnTap is not set or if it did not handle the tap event.

Override DoTap in descending classes to support default behavior for tap events that were not handled by the user.

See Also