Timer.OnTimer

Syntax

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

Begin

//set of operators;

End Sub OnTimer;

Parameters

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

Args - parameter that enables the user to determine event parameters.

Description

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

Comments

The event is used if it is necessary to execute any actions in determined time intervals.

See also:

Timer