To get all attributes that are passed into an event:
1event.getParams();
event.getParams() returns an object containing all event parameters.
Get the Current Phase of an Event
To get the current phase of an event:
1event.getPhase();
If the event hasn’t been fired, event.getPhase() returns undefined. Possible return values for component and application events are capture, bubble, and default. Value events return default. For more information, see:
To retrieve an attribute on the component that fired the event:
1event.getSource().get("v.myName");
Pause the Event
To pause the fired event:
1event.pause();
If paused, the event is not handled until event.resume() is called. You can pause an event in the capture or bubble phase only. For more information, see: