Bar - property of object PmiBarPane
Description:
Returns the reference to the internal item
PmiBar.
Note:
Property access for
read only.
This property is also functional for Web panels.
Example:
Setting the values and limits. It is presumed, that the
oBarPane variable is set as the
PmiBarPane type object.
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