public function ListDataEvent(source:Object, type:String, index0:Number, index1:Number)
Constructs a ListDataEvent object.
source | the source Object (typically this )
|
type | an int specifying CONTENTS_CHANGED, INTERVAL_ADDED, or INTERVAL_REMOVED |
index0 | an int specifying the bottom of a range |
index1 | an int specifying the top of a range |
static public CONTENTS_CHANGED:String
static public INTERVAL_ADDED:String
static public INTERVAL_REMOVED:String
public function getType():String
Returns the event type. The possible values are:
an number representing the type value
public function getIndex0():Number
Returns the lower index of the range. For a single element, this value is the same as that returned by getIndex1.
an int representing the lower index value
public function getIndex1():Number
Returns the upper index of the range. For a single element, this value is the same as that returned by getIndex0.
an int representing the upper index value