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 acknowledgment or after its inactivation
2 - alarm stops to sound after its acknowledgment and after its inactivation
3 - alarm stops to sound after its acknowledgment
Note:
Property access
for read and write.
The default 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 from the property
oNumberLim.AlarmSound = 3;
// Writing into the property
Dim oNumberLim
Set oNumberLim = pMe.Pm("/Number0")
Dim nAlarmSound
nAlarmSound = oNumberLim.AlarmSound
' Reading from the property
oNumberLim.AlarmSound = 3
' Writing into the property