QuitSound - method of the PmAlarmItem object
Description:
Termination of currently active sound signal of the alarm item.
Syntax:
Empty QuitSound()
Note:
This method serves for terminating currently active sound signal of the alarm item. This method is not disabling the recurrence of the alarm item sound signal in the future, if its state is changed in order to meet the trigger condition of the alarm item (i.e. deactivation first, followed with activation) Therefore this method cannot be used for permanent alarm item sound signal deactivation.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oAl = pMe.Pm("/Alarm");
var oAlItem = oAl.Item("Temperature");
oAlItem.QuitSound();
Dim oAl
Set oAl = pMe.Pm("/Alarm")
Dim oAlItem
Set oAlItem = oAl.Item("Temperature")
oAlItem.QuitSound