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:Stringstatic public INTERVAL_ADDED:Stringstatic public INTERVAL_REMOVED:Stringpublic function getType():StringReturns the event type. The possible values are:
an number representing the type value
public function getIndex0():NumberReturns 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():NumberReturns 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