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