GefEventContext.UserParameter (read-only property)

Configures this user parameter with the event.
Syntax: String = object.UserParameter
Description: The UserParameter is used to pass a parameter. To configure, enter a value into the Parameter box which is on the Events tab of the object's property dialog box.

Example:

Sub EventContext_UserParameter()
    
    Dim oCimEvntContext As GefEventContext
    Set oCimEvntContext = CimGetEventContext
    MsgBox "The user parameter is " & _
        oCimEvntContext.UserParameter
    
End Sub