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