Package | com.whirled.net |
Class | public class ElementChangedEvent |
Inheritance | ElementChangedEvent ![]() ![]() |
Property | Defined by | ||
---|---|---|---|
index : int [read-only]
Get the index (key) of the change.
| ElementChangedEvent | ||
key : int [read-only]
Get the key (index) of the change.
| ElementChangedEvent | ||
![]() | name : String
Get the name of the property that changed.
| PropertyChangedEvent | |
![]() | newValue : Object
Get the property's new value.
| PropertyChangedEvent | |
![]() | oldValue : Object
Get the property's previous value (handy!).
| PropertyChangedEvent |
Method | Defined by | ||
---|---|---|---|
ElementChangedEvent(type:String, propName:String, newValue:Object, oldValue:Object, key:int)
Constructor.
| ElementChangedEvent | ||
clone():Event
| ElementChangedEvent | ||
toString():String
| ElementChangedEvent |
Constant | Defined by | ||
---|---|---|---|
ELEMENT_CHANGED : String = "ElemChanged" [static]
The type of an ElementChangedEvent.
| ElementChangedEvent | ||
![]() | PROPERTY_CHANGED : String = "PropChanged" [static]
The type of a property change event.
| PropertyChangedEvent |
index | property |
index:int
[read-only]Get the index (key) of the change.
Implementation public function get index():int
key | property |
key:int
[read-only]Get the key (index) of the change.
Implementation public function get key():int
ElementChangedEvent | () | constructor |
public function ElementChangedEvent(type:String, propName:String, newValue:Object, oldValue:Object, key:int)
Constructor.
Parameterstype:String |
|
propName:String |
|
newValue:Object |
|
oldValue:Object |
|
key:int |
clone | () | method |
public override function clone():Event
Returns
Event |
toString | () | method |
public override function toString():String
Returns
String |
ELEMENT_CHANGED | constant |
public static const ELEMENT_CHANGED:String = "ElemChanged"
The type of an ElementChangedEvent.