Bar - property of the PmgBarPane 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 the values and limits. It is presumed, that the
oBarPane variable is set as the object of the
PmgBarPane type.
JavaScriptVBScriptSelect and copy to clipboard
var oBarPane = pMe.Items("/BarPane0");
oBarPane.Bar.Value = 100;
oBarPane.Bar.ValueMin = 50;
oBarPane.Bar.ValueMax = 1000;
Dim oBarPane
Set oBarPane = pMe.Items("/BarPane0")
oBarPane.Bar.Value = 100
oBarPane.Bar.ValueMin = 50
oBarPane.Bar.ValueMax = 1000