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 or the progress bar's value will result
in an error.
// get accessor Int32 rtn = ProgressBar.Minimum; // set accessor ProgressBar.Minimum = Int32; |
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 |