UserNote - property of the PmAlarmItem object
Description:
Alarm item user note:.
Note:
Property access
for read and write.
The user note is usually connected with alarm acknowledgment and usually it is entered as an optional
sUserNote parameter in the
Acknowledge method. If the alarm item is active, then the value can be changed any time by writing into this property. The modified value will be written automatically to disk into the history when the alarm expires or after acknowledgment and also when the application is terminated.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oAl = pMe.Pm("/Alarm");
var oAlItem = oAl.Item("Temperature");
var sNote = oAlItem.UserNote;
Dim oAl
Set oAl = pMe.Pm("/Alarm")
Dim oAlItem
Set oAlItem = oAl.Item("Temperature")
Dim sNote
sNote = oAlItem.UserNote