Event XbpHTMLViewer():progressChange Foundation

Indicates a change in progress of the current operation.

Syntax
:progressChange := {| nProgress, nProgressMax, self | ... }
:progressChange( <nProgress>, <nProgressMax> ) --> self
xbeHTML_ProgressChange (1049331)
Parameters
<nProgress>
A numeric value indicating the total progress made so far. The progress value is specified in relation to <nProgressMax>.
<nProgressMax>
The maximum progress value.
Return

This method returns the object executing the method (self).

Description

The xbeHTML_ProgressChange notification informs the application about a change in progress of the current operation. When a document is loaded, the object uses the xbeHTML_ProgressChange notification to inform the application about the progress made.

To calculate the percentage of progress, the application may apply the following formula:

Int( (nProgress * 100) / nProgressMax), 100 )

Feedback

If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.