AlarmEnabled - property of the PmaNumberLim object
Syntax:
Boolean AlarmEnabled
Values:
true - the automatic alarm activation is enabled
false - the automatic alarm activation is disabled
Note:
Property access for read and write.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oNumberLim = pMe.Pm("/Number0");
var bAlarm = oNumberLim.AlarmEnabled;
// Reading from the property
oNumberLim.AlarmEnabled = true;
// Writing into the property
Dim oNumberLim
Set oNumberLim = pMe.Pm("/Number0")
Dim bAlarm
bAlarm = oNumberLim.AlarmEnabled
' Reading from the property
oNumberLim.AlarmEnabled = true
' Writing into the property