|
|
|
|
|
Finaliza la ejecución de un Timer desencadenado por Timer. // Procedure used to regularly display the time in TIME1 PROCEDURE Display_Time() TIME1 = TimeSys() // Process when opening the window or the page // Display_Time will be automatically called every second TimerNum is int TimerNum = Timer("Display_Time", 100, 1) IF TimerNum = 0 THEN Error("Unable to create the timer") END
// Stop the timer during a click on the "StopTimer" button EndTimer(TimerNum)
Sintaxis
EndTimer([<Timer number>])
<Timer number>: Entero opcional (entero obligatorio en el navegador WEBDEV) Número del Timer a destruir (devuelto por Timer).Si se especifica este número, el temporizador seleccionado se interrumpe. La función no tiene efecto si el Timer no existe o si ya ha sido interrumpido. Si no se especifica este número y si EndTimer se utiliza en el código de un Procedure llamado por un timer, el timer se interrumpe. De lo contrario, EndTimer no tiene ningún efecto.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|