ValueMin - property of the PmgSlider object
Description:
Low limit of entered value.
Note:
Property access
for read and write. The preset value of this property is defined in the "
Low limit" configurator of this object.
This property is also functional in Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oSlider = pMe.Items("/Slider");
var valueMin = oSlider.ValueMin; //reading
oSlider.ValueMin = -10; //writing
Dim oSlider, valueMin
Set oSlider = pMe.Items("/Slider")
valueMin = oSlider.ValueMin 'reading
oSlider.ValueMin = -10 'writing