Controls whether the timer generates OnTimer events periodically, so you can react to them programatically
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.
Determines the amount of time, in milliseconds, that passes before the timer component initiates another OnTimer event.
Interval determines how frequently the OnTimer event occurs. Each time the specified interval passes, the OnTimer event occurs.
Use Interval to specify any cardinal value as the interval between OnTimer events. The default value is 1000 (one second).
Note: A 0 value is valid, however the timer will not call an OnTimer event for a value of 0.
Tags:
Occurs when a specified amount of time, determined by the Interval property, has passed.
Write an OnTimer event handler to execute an action at regular intervals. The Interval property of a timer determines how frequently the OnTimer event occurs. Each time the specified interval passes, the OnTimer event occurs.
Tags: