FMX.StdCtrls.TCustomButton.Click

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Click; override;

C++

virtual void __fastcall Click();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.StdCtrls.pas
FMX.StdCtrls.hpp
FMX.StdCtrls TCustomButton

Description

Responds to user clicks.

Click is an event handler for the OnClick event. It is automatically called when the left mouse button is pressed and released with the pointer over the control.

Call Click in applications to simulate a mouse OnClick event.

If ModalResult is defined, the ModalResult property of its parent form is set to the same value as the button's ModalResult property.

See Also