GefObjectEvents.GetLBMouseDown (method)

Gets the GefObjectEvent for the specified event type.
Syntax: Set GefObjectEvent = object.GetLBMouseDown ( Create )
Parameters:
Optional Create As Boolean - If specified as True, an event of this type will be created if one does not already exist. The default is False.
Description: The GetObjectRemoved method gets or creates a mouse down event.

Example:

Sub GefObjectEvents_GetLBMouseDown()
    
    Dim oCimObj As GefObject
    Dim oCimObjEvnts As GefObjectEvents
    Dim oCimObjEvnt As GefObjectEvent
    
    Set oCimObj = CimGetObject
    Set oCimObjEvnts = oCimObj.Events
    
    Set oCimObjEvnt = oCimObjEvnts.GetLBMouseDown
    If Not oCimObjEvnt Is Nothing Then
        MsgBox "The event's action name is " & _
            oCimObjEvnt.ActionName
    Else
        MsgBox "There are no mouse down events configured"
    End If
    
End Sub