length

Specifies the initial slider range. For a numerical field, this gives the range as a multiple of the minimum length rangeSize. For example, if length is 3 and rangeSize is 100, the initial slider range is 300. For a date field, the units are specified by the rangeType setting (year, month, or day). In either case, the user can subsequently readjust the range as desired.

Type

Number

Slider size, as multiple of minimum length

Example

RangeSlider1.length = 3;

Either syntax below can be used in component script:

length                  // unqualified
RangeSlider1.length     // qualified

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