This topic has not yet been rated - Rate this topic

onprogress event

Contains a function pointer to the onprogress event handler (callback) function.

Syntax

HTML Attribute <element onprogress = "handler(event)">
Event Property object.onprogress = handler;
attachEvent Method object.attachEvent("onprogress", handler)
addEventListener Method object.addEventListener("click", handler, useCapture)

Event information

SynchronousNo
BubblesNo
CancelableNo

Event handler parameters

pEvtObj [in]

Type: IHTMLEventObj

Remarks

This event reports back the number of bytes loaded from the stream so far. You can use this information to update a progress bar in your application.

Indicates that the creation of, or read by, an msStreamReader is complete.

To invoke this event, do one of the following:

The pEvtObj parameter is required for the following interfaces:

See also

FileReader
msStreamReader
click

 

 

Send comments about this topic to Microsoft

Build date: 11/20/2012

Community Additions

ADD
© 2013 Microsoft. All rights reserved.