world.ResetTimer
Resets a named timer
Prototype
long ResetTimer(BSTR TimerName);
Description
Resets the named timer.
Also see ResetTimers to reset all timers.
WARNING - timers that are not enabled will not be reset. Use EnableTimer first to make sure the timer is enabled, before resetting it, if necessary.
VBscript example
world.ResetTimer "mytimer"
Jscript example
world.ResetTimer("mytimer");
PerlScript example
$world->ResetTimer("mytimer");
Python example
world.ResetTimer("mytimer")
Lua example
ResetTimer("mytimer")
Return value
eInvalidObjectLabel: The timer name is not valid
eTimerNotFound: The timer does not exist
eOK: reset OK
Related topic
See also
| Function | Description |
|---|---|
| AddTimer | Adds a timer |
| DeleteTimer | Deletes a timer |
| EnableTimer | Enables or disables an timer |
| GetTimer | Gets details about a timer |
| GetTimerInfo | Gets details about a timer |
| GetTimerList | Gets the list of timers |
| ResetTimers | Resets all timers |