Programmer's Guide > Interfaces > W3C EventListener interface > handleEvent method
  
handleEvent method
This method is called whenever an event occurs of the type for which the EventListener interface was registered.
handleEvent(evt )
Parameters
Eventevt
The Event contains contextual information about the event. It also contains the stopPropagation and preventDefault methods which are used in determining the event's flow and default action.
Returns
void