Point.AlarmAck (property, read)

Syntax Point.AlarmAck
Description Boolean. When used in combination with the Point.OnAlarmAck method, a Boolean is returned indicating if the point's alarm is in an Acknowledged state.
Example
Sub Main()
??????Dim x as new Point
??????x.ID = "Some_point"
??????x.OnAlarmAck
top:
??????x.GetNext
??????Trace "Alarm Ack state is " & x.AlarmAck
end sub