|
|
|
|
|
LowerValue (Property) In french: ValeurInférieure
The LowerValue property is used to: - Get the lower bound of the interval currently selected in a Range Slider control.
- Change the lower bound of the interval currently selected in a Range Slider control.
Remark: The Value and LowerValue properties are equivalent. // Initializes the interval of prices for the product search RGS_FilterPrice.MinValue = 0 RGS_FilterPrice.MaxValue = 1000 RGS_FilterPrice.LowerValue = 10 RGS_FilterPrice.UpperValue = 1000
Syntax
Getting the lower value of the selected interval Hide the details
<Result> = <Range Slider control>.LowerValue
<Result>: Integer Lower value of the interval currently selected in the control. <Range Slider control>: Control name Name of the Range Slider control used.
Change the lower value of the selected interval Hide the details
<Range Slider control>.LowerValue = <New value>
<Range Slider control>: Control name Name of the Range Slider control used. <New value>: Integer New lower value for the interval currently selected in the control. Remarks - To get and change the upper bound of the interval, use UpperValue.
- The LowerValue and UpperValue properties meet the following conditions:
- The MinValue property is less than or equal to the LowerValue property.
- The LowerValue property is less than or equal to the UpperValue property.
- The UpperValue property is less than or equal to the MaxValue property.
When a value is assigned:- If the new value is less than the MinValue property, the LowerValue property takes the value of the MinValue property.
- If the new value is more than the UpperValue property, the UpperValue property is changed to the same value as the LowerValueproperty.
- If the new value is more than the MaxValue property, the LowerValue and UpperValue properties take the value of the MaxValue property.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|