max
|
Specifies the maximum slider value. If ‘Single Value’ is selected under the Data tab of the ‘Range Slider Properties’ dialog box, the max 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 max value is an array.
Example
Number
RangeSlider1.max = 10;
Date
RangeSlider2.max = new Date("December 31, 2009");
Composite array
RangeSlider3.max = ["NJ", "Piscataway"];
|
Either syntax below can be used in component script:
For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required. |