QuitSound - method of the PmaAlarmGroup object
Description:
Termination of currently active sound signal of the alarm item.
Syntax:
Empty QuitSound(String sId)
Parameters:
sId | (String) The unigue text identifier of the alarm item. See the "Identifier" configurator. For aggregate termination of all alarm item sound signals can be entered the text "$all". |
---|
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");
oAl.QuitSound("T1_HI");
Dim oAl
Set oAl = pMe.Pm("/Alarm")
oAl.QuitSound "T1_HI"