Point.QualityAlarms_Enabled (property, read)

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