IWindowTimers Interface
Allows authors to schedule timer-based callbacks.

Namespace: Aspose.Svg.Window
Assembly: Aspose.SVG (in Aspose.SVG.dll) Version: 20.2
Syntax
public interface IWindowTimers

The IWindowTimers type exposes the following members.

Methods
  NameDescription
Public methodClearInterval
Cancels the timeout set with setInterval() identified by handle
Public methodClearTimeout
Cancels the timeout set with setTimeout() identified by handle.
Public methodSetInterval
Schedules a timeout to run handler every timeout milliseconds. Any arguments are passed straight through to the handler.
Public methodSetTimeout
Schedules a timeout to run handler after timeout milliseconds. Any arguments are passed straight through to the handler.
See Also