Returns or sets the minimum value of the progress range.
[ dValue = ] Object.ProgressMin
The ProgressMin property syntax has the following parts:
|
Name |
Type |
Description |
|
Object |
AStatusBarPane |
AStatusBarPane object |
|
dValue |
Double |
A double specifying the min value of progress bar pane. Default value is 0. |
This property only applies to progress pane of style Progress Bar.
This maximum value is set initially at the outset as well as minimum value. Then as an execution progresses, setting progress values will display the progress on the pane as expected.
The following statement sets the Min to be 0 and Max to be the number of tests in a program:
sbr.Panes("Progress").ProgressMin=0
sbr.Panes("Progress").ProgressMax=iTests
sbr.Panes("Progress").ProgressValue=0