ValueMin - property of the PmgBar object
Description:
Lower limit of the displayed value.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Lower 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 valMin = oBar.ValueMin;
// Reading from the property
oBar.ValueMin = 10;
// Writing into the property
Dim oBar
Set oBar = pMe.Items("/Bar0")
Dim valMin
valMin = oBar.ValueMin
' Reading from the property
oBar.ValueMin = 10
' Writing into the property