min

Specifies the minimum slider value. If ‘Single Value’ is selected under the Data tab of the ‘Range Slider Properties’ dialog box, the min value is a single number or date (as appropriate for the data represented on the Slider). If ‘Composite Value’ is selected under the Data tab, the min value is an array.

Type

Number, Date, or Array

Example

Number
RangeSlider1.min = 10;
Date
RangeSlider2.min = new Date("December 31, 2009");
Composite array
RangeSlider3.min = ["NJ", "Piscataway"];

Either syntax below can be used in component script:

min                  // unqualified
RangeSlider1.min     // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.