WoW:API Slider GetMinMaxValues: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
(Updated to match the current API boilerplate.)
Line 1: Line 1:
{{widgetmethod}}
{{widgetmethod}} __NOTOC__
{{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

Revision as of 14:29, 27 June 2007

Widget API ← Slider < 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