GefObjectEvent.ActionName (read-only property)

Gets the name of the procedure or script entry point.
Syntax: String = object.ActionName
Description: To change this property, use the SetAction method.

Example:

Sub GefObjectEvent_ActionName()
    
    Dim oCimObj As GefObject
    Dim oCimObjEvnts As GefObjectEvents
    Dim oCimObjEvnt As GefObjectEvent
    
    Set oCimObj = CimGetObject
    Set oCimObjEvnts = oCimObj.Events
    Set oCimObjEvnt = oCimObjEvnts.Item(0)
    
    MsgBox "The first action's name was " & oCimObjEvnt.ActionName
    
End Sub