| Package | org.aswing.event |
| Class | public class TableCellEditEvent |
| Inheritance | TableCellEditEvent AWEvent flash.events.Event |
| Method | Defined by | ||
|---|---|---|---|
|
TableCellEditEvent(type:String, row:int, column:int, oldValue:* = null, newValue:* = null)
Create a cell edit event.
| TableCellEditEvent | ||
|
clone():Event
| TableCellEditEvent | ||
|
getColumn():int
| TableCellEditEvent | ||
|
getNewValue():*
| TableCellEditEvent | ||
|
getOldValue():*
| TableCellEditEvent | ||
|
getRow():int
| TableCellEditEvent | ||
| 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 = "tableCellEditingCanceled" [static]
The
TableCellEditEvent.EDITING_CANCELED constant defines the value of the
type property of the event object for a tableCellEditingCanceled event. | TableCellEditEvent | ||
| EDITING_STARTED : String = "tableCellEditingStarted" [static]
The
TableCellEditEvent.EDITING_STARTED constant defines the value of the
type property of the event object for a tableCellEditingStarted event. | TableCellEditEvent | ||
| EDITING_STOPPED : String = "tableCellEditingStopped" [static]
The
TableCellEditEvent.EDITING_STOPPED constant defines the value of the
type property of the event object for a tableCellEditingStopped event. | TableCellEditEvent | ||
![]() | 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 | |
| TableCellEditEvent | () | constructor |
public function TableCellEditEvent(type:String, row:int, column:int, oldValue:* = null, newValue:* = null)Create a cell edit event.
Parameterstype:String — the type
|
|
row:int — the edit row
|
|
column:int — the edit column
|
|
oldValue:* (default = null) — the old value
|
|
newValue:* (default = null) — the edited new value
|
| clone | () | method |
public override function clone():Event
Returns
Event |
| getColumn | () | method |
public function getColumn():int
Returns
int |
| getNewValue | () | method |
public function getNewValue():*
Returns
* |
| getOldValue | () | method |
public function getOldValue():*
Returns
* |
| getRow | () | method |
public function getRow():int
Returns
int |
| EDITING_CANCELED | constant |
public static const EDITING_CANCELED:String = "tableCellEditingCanceled"
The TableCellEditEvent.EDITING_CANCELED constant defines the value of the
type property of the event object for a tableCellEditingCanceled event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
getRow() | the row be edit |
getColumn() | the column 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 = "tableCellEditingStarted"
The TableCellEditEvent.EDITING_STARTED constant defines the value of the
type property of the event object for a tableCellEditingStarted event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
getRow() | the row be edit |
getColumn() | the column 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 = "tableCellEditingStopped"
The TableCellEditEvent.EDITING_STOPPED constant defines the value of the
type property of the event object for a tableCellEditingStopped event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
getRow() | the row be edit |
getColumn() | the column 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. |