Bar - property of the PmgBarBox object
Description:
Returns reference to the internal
PmgBar object.
Note:
Property access for
read only.
This property is also functional in
Web panels.
Example:
Setting of the value and limits. It is presumed, that the
oBarBox variable is set to object of the
PmgBarBox type.
JavaScriptVBScriptSelect and copy to clipboard
var oBarBox = pMe.Items("/BarBox0");
oBarBox.Bar.Value = 100;
oBarBox.Bar.ValueMin = 50;
oBarBox.Bar.ValueMax = 1000;
Dim oBarBox
Set oBarBox = pMe.Items("/BarBox0")
oBarBox.Bar.Value = 100
oBarBox.Bar.ValueMin = 50
oBarBox.Bar.ValueMax = 1000