<< Click to Display Table of Contents >> VpeSetProgressBar |
[Windows platform only; not supported by the Community Edition]
Sets the Progress Bar to the given percentage value.
void VpeSetProgressBar(
VpeHandle hDoc,
int percent
)
VpeHandle hDoc
Document Handle
int percent
a number between 0 and 100, specifying the percentage value, the progress bar shall display
Example:
VpeOpenProgressBar(hDoc)
for n = 0 to 100
VpeSetProgressBar(hDoc, n)
next n
VpeCloseProgressBar(hDoc)