ProgressBarMinimum Property

Gets or sets the minimum value of the range of the ProgressBar.

Definition

Namespace: BeeMobile.ProgressBar
Assembly: BeeMobile.ProgressBar.NET48 (in BeeMobile.ProgressBar.NET48.dll) Version: 4.8.1.0
C#
public int Minimum { get; set; }

Property Value

Int32
Int32 - the minimum value of the range. The default is 0.

Remarks

This property specifies the lower limit of the Value property. When the value of the Minimum property is changed, the ProgressBar control is redrawn to reflect the new range of the control. When the value of the Value property is equal to the value of the Minimum property, the progress bar is empty.

Values less than 0 cannot be set to this property.

To change the value of the progress bar, set the value of the Value property.

See Also