WoW:API Slider GetMinMaxValues: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
m (Move page script moved page API Slider GetMinMaxValues to API Slider GetMinMaxValues without leaving a redirect)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{widgetmethod}}
{{widgetmethod}}
{{Stub/API}}
Returns the min and max values of a given slider


  sliderMin, sliderMax = MySlider:GetMinMaxValues()
Returns the minimum and maximum values of a slider.
sliderMin, sliderMax = Slider:GetMinMaxValues()
 
== Arguments ==
: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