Name ResetTimer
Type Method
Summary Resets a named timer
Prototype long ResetTimer(BSTR TimerName);
Description Resets the named timer.

Also see ResetTimers to reset all timers.
VBscript example
world.ResetTimer "mytimer"
Jscript example
world.ResetTimer("mytimer");
PerlScript example
$world->ResetTimer("mytimer");
Returns eInvalidObjectLabel: The timer name is not valid
eTimerNotFound: The timer does not exist
eOK: reset OK

See also ...