class org.aswing.event.ContainerEvent extends AWEvent
The Event class is used to Container events. @author paling
Class Fields
The AWEvent.COM_ADDED constant defines the value of the
type property of the event object for a comAdded event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
getContainer() | the container who just be added a child. |
getChild() | the added child. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
comp.addEventListener() to register an event listener,
comp is the value of the currentTarget. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
@eventType comAdded
static var COM_REMOVED:String
The AWEvent.COM_REMOVED constant defines the value of the
type property of the event object for a comRemoved event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
getContainer() | the container who just be removed a child. |
getChild() | the removed child. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
comp.addEventListener() to register an event listener,
comp is the value of the currentTarget. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
@eventType comRemoved
Instance Fields
![]() | Show inherited public instance fields | Hide inherited public instance fields
|
