CimEMEvent.PointEvent

Syntax Event.PointEvent
Description Returns CimEMPointEvent. Returns the Point Event object that triggered the action, or empty if action was not triggered by point event.
Example
Sub Main()
   Dim event as CimEMEvent
   Set event = CimGetEMEvent()
   Dim pointEvent as CimEMPointEvent
   Set pointEvent = event.PointEvent()
End Sub