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