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