TiTimers.Interval1
TiTimers
Determines the amount of time, in milliseconds, that passes before the timer
component initiates another OnTimer1 event.
property Interval1 : Integer;
Description
Interval1 determines how frequently the OnTimer1 event occurs. Each time the
specified interval passes, the OnTimer1 event occurs.
Use Interval1 to specify the interval between OnTimer1 events. The default
value is 1000 (one second).
Example
Delphi
iComponent.Interval1 := 100;
C++ Builder
iComponent->Interval1 = 100;
Contents | Index | Previous | Next