Timer.OnTimer

Syntax

Sub OnTimer(Sender: Object; Args: IEventArgs);

Begin

//set of operators;

End Sub OnTimer;

Parameters

The Sender parameter returns the component that has generated the event.

The Args parameter allows to determine event parameters.

Description

The OnTimer event occurs when the time set by the Interval property of the Timer component runs out.

Comments

This event is used if it is necessary to perform any actions over determined time intervals.

See also:

Timer