AlarmSound - property of the PmaNumberLim object
Description:
Type of the alarm sound notification.
Values:
0 - alarm doesn't sound at all
1 - alarm stops to sound after its acknowledgement or after its inactivation
2 - alarm stops to sound after its acknowledgement and after its inactivation
3 - alarm stops to sound after its acknowledgement
Note:
Property access
for read and write. The preset value of this property is defined in the "
Sound notification" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oNumberLim = pMe.Pm("/Number0");
var nAlarmSound = oNumberLim.AlarmSound; //Reading the value
oNumberLim.AlarmSound = 3; //Writing the value
Dim oNumberLim, nAlarmSound
Set oNumberLim = pMe.Pm("/Number0")
nAlarmSound = oNumberLim.AlarmSound 'Reading the value
oNumberLim.AlarmSound = 3 'Writing the value