Alarm.AlarmAcknowledged



AlarmAcknowledged(obItem As AlarmItem)

Parameters

obItem As AlarmItem
The returned object is an object of type AlarmItem and has all properties and methods like the original AlarmItem object.
ED
not used
RT
avaliable

Remarks

This Event is fired when an alarm was acknowledged by a user.
To get these Event, an Object has to be declared and initialised

Sample:


Dim WithEvents zAlarm As Alarm

Private Sub Project_Active()
	Set zAlarm = thisProject.Alarm
End Sub

Private Sub zAlarm_AlarmAcknowledged(ByVal obItem As IAlarmItem)
	Debug.Print obItem.Text
End Sub


See Also

Alarm, AlarmItem