The jSlider control is analogous the .NET Framework's TrackBar, but has a much more rich appearance, employing jControls NF4's 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 Thumb property is used to customize the appearance of the handle that the operator will use to move the slider.
The Thumb.Size property is used to adjust the width of the thumb.
The Track property is used to customize the appearance of the track that the thumb travels along.
The Track.Size property is used to adjust the width of the track.
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.