upperInclusive

Specifies whether the upper limit of the selection is included in the result set. For example, if the upper limit of the Range Slider selection is 15, a setting of upperInclusive=true (default) includes the value 15 in the result set.

Range Slider Inclusive

A setting of upperInclusive=false in this case excludes the value 15 from the result set.

Range Slider Exclusive

The range display on the slider reflects the status of the upperInclusive property (e.g., 10..15 vs. 10->15).

Type

Boolean

true: Include upper limit in selection (default)
false: Exclude upper limit from selection

Example

RangeSlider1.upperInclusive=false;

Either syntax below can be used in component script:

upperInclusive                  // unqualified
RangeSlider1.upperInclusive     // qualified

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