Enabled - property of the PmAlarmItem object
Description:
Enable/disable of the alarm item.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Enabled" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oAl = pMe.Pm("/Alarm");
var oAlItem = oAl.Item("Temperature");
oAlItem.Enabled = false;
// true
Dim oAl
Set oAl = pMe.Pm("/Alarm")
Dim oAlItem
Set oAlItem = oAl.Item("Temperature")
oAlItem.Enabled = false
' true