ProgressMin Property (AStatusBarPane)

Returns or sets the minimum value of the progress range.

Syntax

 [ 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.

Comments

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.

Example

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

Applies to

AStatusBarPane

See Also

ProgressMax, ProgressValue