Minimum (ProgressBar)
Description
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.
C# Syntax
// get accessor Int32 rtn = ProgressBar.Minimum; // set accessor ProgressBar.Minimum = Int32;
Examples
VBScript Example
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
nextSee Also
Autodesk Softimage v7.5