Limit - property of the PmaNumberLim object
Description:
Limit value.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Limit value" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oNumberLim = pMe.Pm("/Number0");
var nLimit = oNumberLim.Limit;
// Reading from the property
oNumberLim.Limit = 80;
// Writing into the property
Dim oNumberLim
Set oNumberLim = pMe.Pm("/Number0")
Dim nLimit
nLimit = oNumberLim.Limit
' Reading from the property
oNumberLim.Limit = 80
' Writing into the property