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.
The Orientation property is used to orient the control horizontally over vertically.
The Bar property is used to customize the appearance of the part of the control that indicates progress.
The Track property is used to customize the appearance of the track that the bar travels along.
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.
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.
The ValueChanged event fires any time the Value property changes.