Important: The information in this document is obsolete and should not be used for new development.
SetProgressPercent
Sets the percentage of an asynchronous process that has been completed.
void SetProgressPercent (in short percentDone);
percentDone
- The percentage of the process that has been completed.
DISCUSSION
You can call theSetProgressPercent
method to set the percentage of a process that has been completed and broadcast the change to all attached progress receivers. For example, consider the process of downloading 200 bytes of data. If you have downloaded 100 bytes, 50% has been completed.If you subclass
CyberProgressBroadcaster
and override this method, your override must call its inherited method.SEE ALSO
TheGetAmountDone
method (page 303).
TheGetAmountTotal
method (page 303).
TheGetProgressPercent
method (page 305).
TheSetAmountDone
method (page 308).
TheSetAmountTotal
method (page 309).