Packagecom.whirled.net
Classpublic class PropertyChangedEvent
InheritancePropertyChangedEvent Inheritance flash.events.Event
SubclassesElementChangedEvent

Property change events are dispatched after the property change was validated on the server.



Public Properties
 PropertyDefined by
  name : String
[read-only] Get the name of the property that changed.
PropertyChangedEvent
  newValue : Object
[read-only] Get the property's new value.
PropertyChangedEvent
  oldValue : Object
[read-only] Get the property's previous value (handy!).
PropertyChangedEvent
Public Methods
 MethodDefined by
  
PropertyChangedEvent(type:String, propName:String, newValue:Object, oldValue:Object)
Constructor.
PropertyChangedEvent
  
clone():Event
PropertyChangedEvent
  
toString():String
PropertyChangedEvent
Public Constants
 ConstantDefined by
  PROPERTY_CHANGED : String = "PropChanged"
[static] The type of a property change event.
PropertyChangedEvent
Property detail
nameproperty
name:String  [read-only]

Get the name of the property that changed.

Implementation
    public function get name():String
newValueproperty 
newValue:Object  [read-only]

Get the property's new value. Note: if index is not -1 then this value is merely one element in an array that may be fully accessed using the 'net' subcontrol.

Implementation
    public function get newValue():Object
oldValueproperty 
oldValue:Object  [read-only]

Get the property's previous value (handy!).

Implementation
    public function get oldValue():Object
Constructor detail
PropertyChangedEvent()constructor
public function PropertyChangedEvent(type:String, propName:String, newValue:Object, oldValue:Object)

Constructor.

Parameters
type:String
 
propName:String
 
newValue:Object
 
oldValue:Object
Method detail
clone()method
public override function clone():Event

Returns
Event
toString()method 
public override function toString():String

Returns
String
Constant detail
PROPERTY_CHANGEDconstant
public static const PROPERTY_CHANGED:String = "PropChanged"

The type of a property change event.