ValueMax - property of the PmgMeterBox object
Description:
Value of the upper limit.
Note:
Property access
for read and write.
The preset 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, valueMax
Set oMeter = pMe.Items("/Meter")
valueMax = oMeter.ValueMax
' Reading from the property
oMeter.ValueMax = 100
' Writing into the property