Slider:SetValueStep(step)
|
Sets the minimum increment between allowed slider values.
|
Slider:SetValue(value)
|
Sets the value representing the position of the slider thumb.
|
Slider:SetOrientation("orientation")
|
Sets the orientation of the slider.
|
Slider:SetMinMaxValues(minValue, maxValue)
|
Sets the minimum and maximum values for the slider.
|
enabled = Slider:IsEnabled()
|
Returns whether user interaction with the slider is allowed.
|
step = Slider:GetValueStep()
|
Returns the minimum increment between allowed slider values.
|
value = Slider:GetValue()
|
Returns the value representing the current position of the slider thumb.
|
texture = Slider:GetThumbTexture()
|
Returns the texture for the slider thumb.
|
orientation = Slider:GetOrientation()
|
Returns the orientation of the slider.
|
minValue, maxValue = Slider:GetMinMaxValues()
|
Returns the minimum and maximum values for the slider.
|
Slider:Enable()
|
Allows user interaction with the slider.
|
Slider:Disable()
|
Disallows user interaction with the slider.
|