CimClassEventActionList.Delete (method)

Deletes the EventAction.
Syntax: object.Delete actionId
Parameters:
actionId As String - Name of the Event to be deleted from the event list.
Description: CimClassEventActionList.Add adds a CimEventAction by name.

Examples

Dim class as CimClassInstance
Dim eventList as CimClassEventList
Dim event as CimEvent
Dim eventActionList as CimClassEventActionList
[...]
Set eventList = class.Events
Set event = eventList.Item("EXISTING_EVENT")
Set eventActionList = event.Actions
eventActionList.Delete("POINT_ACTION")