Point.EnableAlarm (method)

Syntax Point.EnableAlarm enable
Description To enable or disable alarming on the point. Can be used to temporarily disable alarming on a point.
Comments Parameter Description
Enable Boolean. A value of TRUE enables alarming for the point and value of FALSE disables alarming for the point.
Example
Sub Main()
??????Dim myPoint As New point
??????myPoint.Id = "ALARM_POINT"
??????' Disable alarm for point.
??????myPoint.EnableAlarm FALSE
End Sub