|
|
|
|
|
EndTimerSys (Function) In french: FinTimerSys Ends the execution of a timer triggered by TimerSys.
PROCEDURE Display_Time()
EDT_Time1 = TimeSys()
TimerNum is int
TimerNum = TimerSys("Display_Time", 100, 1)
IF TimerNum = 0 THEN
Error("Unable to create the timer")
END
Syntax
EndTimerSys([<Timer number>])
<Timer number>: Optional integer Number of the timer to destroy (returned by TimerSys). If this number is specified, the selected timer is interrupted. The function has no effect if the timer does not exist or if it has already been interrupted. If this number is not specified and if EndTimerSys is used in the code of a procedure called by a timer, the timer is interrupted. Otherwise, EndTimerSys has no effect.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|