Interface IWindowTimers

Interface IWindowTimers

Nombre del espacio: Aspose.Html.Window Colección: Aspose.HTML.dll (25.4.0)

Permite que los autores planifiquen llamadas basadas en horarios.

[ComVisible(true)]
[DOMNoInterfaceObject]
[DOMObject]
public interface IWindowTimers

Methods

ClearInterval(Int)

Cancela el timout establecido con setInterval() identificado por manejo

[DOMName("clearInterval")]
void ClearInterval(int handle)

Parameters

handle int

El manejo .

ClearTimeout(Int)

Cancela el timout establecido con setTimeout() identificado por manejo.

[DOMName("clearTimeout")]
void ClearTimeout(int handle)

Parameters

handle int

El manejo .

SetInterval(objeto, int, params objeto[])

Planifica un timout para ejecutar a los comerciantes cada millisecondo de tiempo.Todos los argumentos se transmiten directamente al comercio.

[DOMName("setInterval")]
int SetInterval(object handler, int timeout, params object[] args)

Parameters

handler object

El comerciante .

timeout int

El Timeout.

args object [][]

Los argumentos.

Returns

int

El manejo

SetTimeout(objeto, int, params objeto[])

Planifica un timout para ejecutar el comerciante después de millisecondes de tiempo.Cualquier argumento se transmite directamente al comercio.

[DOMName("setTimeout")]
int SetTimeout(object handler, int timeout, params object[] args)

Parameters

handler object

El comerciante .

timeout int

El Timeout.

args object [][]

Los argumentos.

Returns

int

El manejo

 Español