Sub OnTimer(Sender: Object; Args: IEventArgs);
Begin
//set of operators;
End Sub OnTimer;
The Sender parameter returns the component that has generated the event.
The Args parameter allows to determine event parameters.
The OnTimer event occurs when the time set by the Interval property of the Timer component runs out.
This event is used if it is necessary to perform any actions over determined time intervals.
See also: