Point.QualityAlarmed (property, read)

Syntax Point.QualityAlarmed
Description Boolean. Returns TRUE if the point is in alarm, FALSE otherwise.
Example
Sub Main()
   Dim p as new Point
   p.Id = "VALVE_1"
   p.Get
   if p.QualityAlarmed then
      MsgBox "Point is in alarm"
   End If
End Sub