IWindowTimers class

IWindowTimers class

Allows authors to schedule timer-based callbacks.

The IWindowTimers type exposes the following members:

Methods

MethodDescription
set_timeoutSchedules a timeout to run handler after timeout milliseconds. Any arguments are passed straight through to the handler.
clear_timeoutCancels the timeout set with setTimeout() identified by handle.
set_intervalSchedules a timeout to run handler every timeout milliseconds. Any arguments are passed straight through to the handler.
clear_intervalCancels the timeout set with setInterval() identified by handle

See Also