FMX.StdCtrls.TCustomButton.DoRepeatTimer

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoRepeatTimer(Sender: TObject);

C++

void __fastcall DoRepeatTimer(System::TObject* Sender);

Properties

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

Description

Internally executes every 100 milliseconds to perform the OnClick event, if the RepeatClick property is True.

If the RepeatClick property is True, each time 100 milliseconds pass, DoRepeatDelayTimer is executed and the DoRepeatTimer method is internally called to perform this button's OnClick event.

See Also