WoW:API Slider GetMinMaxValues: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
m (Move page script moved page API Slider GetMinMaxValues to API Slider GetMinMaxValues without leaving a redirect)
 
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Slider:GetMinMaxValues()
{{widgetmethod}}


Returns the min and max values of a given slider
Returns the minimum and maximum values of a slider.
sliderMin, sliderMax = Slider:GetMinMaxValues()


example:<BR>
== Arguments ==
local sliderMin, sliderMax = Slider:GetMinMaxValues()
:None
 
== Returns ==
:sliderMin, sliderMax
:; sliderMin : Number - The minimum value of the slider
:; sliderMax : Number - The maximum value of the slider

Latest revision as of 04:47, 15 August 2023

Widget API ← Slider < GetMinMaxValues

Returns the minimum and maximum values of a slider.

sliderMin, sliderMax = Slider:GetMinMaxValues()

Arguments[edit]

None

Returns[edit]

sliderMin, sliderMax
sliderMin
Number - The minimum value of the slider
sliderMax
Number - The maximum value of the slider