class org.aswing.event.PropertyChangeEvent extends AWEvent

Event for object property changed. @author paling

Class Fields

static var PROPERTY_CHANGE:String

The PropertyChangeEvent.PROPERTY_CHANGE constant defines the value of the type property of the event object for a propertyChange event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
getPropertyName()value changed property name
getOldValue()old value
getNewValue()new value
currentTargetThe 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.
targetThe 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 propertyChange

Instance Fields

Show inherited public instance fieldsHide inherited public instance fields

Inherited from AWEvent

function clone():Event

Inherited from Event

var bubbles:Bool
var cancelable:Bool
var currentTarget:Dynamic
var eventPhase:EventPhase
var target:Dynamic
var type:String
function clone():Event
function formatToString(className:String, ?p1:Dynamic, ?p2:Dynamic, ?p3:Dynamic, ?p4:Dynamic, ?p5:Dynamic):String
function isDefaultPrevented():Bool
function preventDefault():Void
function stopImmediatePropagation():Void
function stopPropagation():Void
function toString():String

function new(propertyName:String, oldValue:Dynamic, newValue:Dynamic): Void

function clone(): Event

function getNewValue(): Dynamic

function getOldValue(): Dynamic