ValueMin - property of the PmgSlider object
Description:
Lower limit of entered value.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Lower 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 from the property
oSlider.ValueMin = -10;
// Writing into the property
Dim oSlider
Set oSlider = pMe.Items("/Slider")
Dim valueMin
valueMin = oSlider.ValueMin
' Reading from the property
oSlider.ValueMin = -10
' Writing into the property