Class EventBase
The EventBase class is used as the base class for the creation of Event objects, which are passed as parameters to event listeners when an event occurs.
Constructor Attributes | Constructor Name and Description |
---|---|
Constructor.
|
Field Attributes | Field Name and Description |
---|---|
The object that is actively processing the Event object with an event listener.
|
|
The passed parameters object to event listeners.
|
|
The event target.
|
|
The type of event.
|
Method Attributes | Method Name and Description |
---|---|
clone()
Duplicates an instance of the Event object.
|
|
dispose()
Deletes all properties of the Event object.
|
|
toString()
Returns a string of the Event object.
|
Class Detail
EventBase()
Constructor. Creates an Event object to pass as a parameter to event listeners.
Field Detail
currentTarget
The object that is actively processing the Event object with an event listener.
params
The passed parameters object to event listeners.
target
The event target.
type
The type of event.
Method Detail
clone()
Duplicates an instance of the Event object.
dispose()
Deletes all properties of the Event object.
toString()
Returns a string of the Event object.