DisableAlarm
Disables a specific alarm of a tag.
Syntax:
Void DisableLoLo(String tag);
Disables the LoLo alarm of the tag passed in the parameter.
Void DisableLo(String tag)
Disables the Lo alarm of the tag passed in the parameter.
Void DisableHiHi(String tag)
Disables the HiHi alarm of the tag passed in the parameter.
Void DisableHi(String tag)
Disables the Hi alarm of the tag passed in the parameter.
Void DisableDeviation(String tag)
Disables the Deviation alarm of the tag passed in the parameter.
Void DisableWatchDog(String tag)
Disables the WatchDog alarm of the tag passed in the parameter.
Void DisableFreeze(String tag)
Disables the Freeze alarm of the tag passed in the parameter
Void DisableBooleanTrue(String tag)
Disables the True alarm of the Boolean tag passed in the parameter.
Void DisableBooleanFalse(String tag)
Disables the False alarm of the Boolean tag passed in the parameter
Params:
String tag: a string parameter containing the name of the tag that will have its alarm disabled.
Example:
PHITag.DisableLoLo("TagInt");
|