ValueMax - property of the PmgMeterBox object
Description:
Value of the upper limit.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Upper limit" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oMeter = pMe.Items("/Meter");
var valueMax = oMeter.ValueMax;
// Reading from the property
oMeter.ValueMax = 100;
// Writing into the property
Dim oMeter
Set oMeter = pMe.Items("/Meter")
Dim valueMax
valueMax = oMeter.ValueMax
' Reading from the property
oMeter.ValueMax = 100
' Writing into the property