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