

| Type | Description | |||
| Ev as OleEvent | An OleEvent object that holds information about the event being fired. Use the ToString property to display information about fired event such us name, parameters, types and values. |
For example, the following code displays information about the events fired by the custom-view control:
Private Sub Pivot1_OleEvent(ByVal Ev As EXPIVOTLibCtl.IOleEvent)
Debug.Print Ev.ToString
End Sub