IWindowTimers Interface

IWindowTimers interface

Allows authors to schedule timer-based callbacks.

public interface IWindowTimers

Methods

NameDescription
ClearInterval(int)Cancels the timeout set with setInterval() identified by handle
ClearTimeout(int)Cancels the timeout set with setTimeout() identified by handle.
SetInterval(object, int, params object[])Schedules a timeout to run handler every timeout milliseconds. Any arguments are passed straight through to the handler.
SetTimeout(object, int, params object[])Schedules a timeout to run handler after timeout milliseconds. Any arguments are passed straight through to the handler.

See Also