Returns or sets the minimum value (lower limit of the progress
bar's range) as an Integer. By
default, the minimum is 0.
Note: Attempting to set the minimum value to be greater than the
maximum value will result in an "invalid argument" error.
dim progressbar
set progressbar = XSIUIToolkit.ProgressBar
progressbar.Minimum = 10
progressbar.CancelEnabled = false
progressbar.Visible= true
for i = 10 to 70
progressbar.Caption = "step" & i
progressbar.Value = i
next
|