Vcl.ExtCtrls.TTimer.Enabled
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 | Vcl.ExtCtrls.pas Vcl.ExtCtrls.hpp |
Vcl.ExtCtrls | 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 is true.
See Also
Code Examples