| Package | org.aswing.event |
| Class | public class TreeCellEditEvent |
| Inheritance | TreeCellEditEvent AWEvent flash.events.Event |
| Method | Defined by | ||
|---|---|---|---|
|
TreeCellEditEvent(type:String, path:TreePath, oldValue:* = null, newValue:* = null)
| TreeCellEditEvent | ||
|
clone():Event
| TreeCellEditEvent | ||
|
getNewValue():*
| TreeCellEditEvent | ||
|
getOldValue():*
| TreeCellEditEvent | ||
| TreeCellEditEvent | |||
| Constant | Defined by | ||
|---|---|---|---|
![]() | ACT : String = "act" [static]
The
AWEvent.ACT constant defines the value of the
type property of the event object for a act event. | AWEvent | |
| EDITING_CANCELED : String = "treeCellEditingCanceled" [static]
The
TreeCellEditEvent.EDITING_CANCELED constant defines the value of the
type property of the event object for a treeCellEditingCanceled event. | TreeCellEditEvent | ||
| EDITING_STARTED : String = "treeCellEditingStarted" [static]
The
TreeCellEditEvent.EDITING_STARTED constant defines the value of the
type property of the event object for a treeCellEditingStarted event. | TreeCellEditEvent | ||
| EDITING_STOPPED : String = "treeCellEditingStopped" [static]
The
TreeCellEditEvent.EDITING_STOPPED constant defines the value of the
type property of the event object for a treeCellEditingStopped event. | TreeCellEditEvent | ||
![]() | FOCUS_GAINED : String = "focusGained" [static]
The
AWEvent.FOCUS_GAINED constant defines the value of the
type property of the event object for a focusGained event. | AWEvent | |
![]() | FOCUS_LOST : String = "focusLost" [static]
The
AWEvent.FOCUS_LOST constant defines the value of the
type property of the event object for a focusLost event. | AWEvent | |
![]() | HIDDEN : String = "hidden" [static]
The
AWEvent.HIDDEN constant defines the value of the
type property of the event object for a hidden event. | AWEvent | |
![]() | PAINT : String = "paint" [static]
The
AWEvent.PAINT constant defines the value of the
type property of the event object for a paint event. | AWEvent | |
![]() | SHOWN : String = "shown" [static]
The
AWEvent.SHOWN constant defines the value of the
type property of the event object for a shown event. | AWEvent | |
| TreeCellEditEvent | () | constructor |
public function TreeCellEditEvent(type:String, path:TreePath, oldValue:* = null, newValue:* = null)Parameters
type:String |
|
path:TreePath |
|
oldValue:* (default = null) |
|
newValue:* (default = null) |
| clone | () | method |
public override function clone():Event
Returns
Event |
| getNewValue | () | method |
public function getNewValue():*
Returns
* |
| getOldValue | () | method |
public function getOldValue():*
Returns
* |
| getPath | () | method |
| EDITING_CANCELED | constant |
public static const EDITING_CANCELED:String = "treeCellEditingCanceled"
The TreeCellEditEvent.EDITING_CANCELED constant defines the value of the
type property of the event object for a treeCellEditingCanceled event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
getPath() | the path be edit |
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. |
| EDITING_STARTED | constant |
public static const EDITING_STARTED:String = "treeCellEditingStarted"
The TreeCellEditEvent.EDITING_STARTED constant defines the value of the
type property of the event object for a treeCellEditingStarted event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
getPath() | the path be edit |
getOldValue() | the old value |
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. |
| EDITING_STOPPED | constant |
public static const EDITING_STOPPED:String = "treeCellEditingStopped"
The TreeCellEditEvent.EDITING_STOPPED constant defines the value of the
type property of the event object for a treeCellEditingStopped event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
getPath() | the path be edit |
getOldValue() | the old value |
getNewValue() | the new value edited |
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. |