FMX.Types.TTimer.Enabled

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Enabled: Boolean read FEnabled write SetEnabled default True;

C++

__property bool Enabled = {read=FEnabled, write=SetEnabled, default=1};

Properties

Type Visibility Source Unit Parent
property published
FMX.Types.pas
FMX.Types.hpp
FMX.Types TTimer

Description

Controls whether the timer generates OnTimer events periodically.

Use Enabled to enable or disable the timer. If Enabled is True, the timer responds normally. If Enabled is False, the timer does not generate OnTimer events. The default value is True.

See Also


Code Examples