Table of Contents

jProgress

The jProgress control is analogous the .NET Framework's ProgressBar, but has a much more rich appearance, employing jControls' fill, border, shape, corner radii, drop shadow, and text features, along with a few additional features.

Orientation Property

The Orientation property is used to orient the control horizontally over vertically.

Bar Property

The Bar property is used to customize the appearance of the part of the control that indicates progress.

Track Property

The Track property is used to customize the appearance of the track that the bar travels along.

Minimum Property

The Minimum property sets the lower bound of the Value property.

Maximum Property

The Maximum property sets the upper bound of the Value property.

Text Property

The Text property is a .NET format string that specifies the text to display on the control. The only argument, {0}, is the value of the Value property. The characters after the : define the format.

Value Property

The Value property gets or sets the length progress bar. The value will be clipped if attempting to set it outside of the range specified by the Minimum property and the Maximum property.

ValueChanged Event

The ValueChanged event fires any time the Value property changes.