AckAllAlarmsPlusDlg

(Alarm Manager module)

Description: Will acknowledge all unacknowledged alarms available to the current user after confirmation
Returns: Nothing
Usage: Script Only.
Function Groups: Alarm
Related to: Ack | AckAllAlarms
Format: \AlarmManager.AckAllAlarmsPlusDlg([TestButton]);
Parameters:  
TestButton
Optional Boolean. Should be valid only when you are calling this function from a test. A value of 0 simulates cancel. 1 simulates OK.
Comments: This does what AckAllAlarms does but it includes a call to ask the user, thus changing the behavior from a synchronous call to a asynchronous call.

Example:

  If WinButton(200, 200, 200 + \LgBtnWd, 200 + \BtnHt,
               0, "Ack All", 1, \_DialogFont);
  [
     { An asynchronous call that asks the user to confirm Ack All }
    \AlarmManager\AckAllAlarmsPlusDlg();
  ]