int Slider.Min;
Gets/sets the minimum value of the specified GUI slider.
When changing the minimum, the slider's Value will be adjusted if
necessary so that it lies within the Min - Max range.
An error occurs if you try to set the Min to a higher value than the Max.
Example:
sldHealth.Min = 0;
sets the minimum value of the sldHealth slider to 0.
See Also: Slider.Max,
Slider.Value
|