<< Click to Display Table of Contents >> OpenProgressBar |
[GUI Control Only, not supported by the Community Edition]
Creates a Progress Bar in the Statusbar with the initial value of zero (0%).
method void VPE.OpenProgressBar(
)
Remarks:
The Progress Bar hides the text segment in the Statusbar, therefore text displayed there with StatusText will not be visible until the Progress Bar is closed.
Example:
Doc.OpenProgressBar
for n = 0 to 100
Doc.StatusProgress = n
next n
Doc.CloseProgressBar