ValueMax - property of the PmgBar object
Description:
High limit of the displayed 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 oBar = pMe.Items("/Bar0");
var valMax = oBar.ValueMax; //reading
oBar.ValueMax = 90; //writing
Dim oBar, valMax
Set oBar = pMe.Items("/Bar0")
valMax = oBar.ValueMax 'reading
oBar.ValueMax = 90 'writing