Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The CollectionEventKind class contains constants for the valid values
of the mx.events.CollectionEvent class
kind
property.
These constants indicate the kind of change that was made to the collection.
public static const ADD:String = "add"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates that the collection added an item or items.
public static const MOVE:String = "move"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates that the item has moved from the position identified
by the CollectionEvent oldLocation
property to the
position identified by the location
property.
public static const REFRESH:String = "refresh"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates that the collection applied a sort, a filter, or both.
This change can potentially be easier to handle than a RESET.
public static const REMOVE:String = "remove"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates that the collection removed an item or items.
public static const REPLACE:String = "replace"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates that the item at the position identified by the
CollectionEvent location
property has been replaced.
public static const RESET:String = "reset"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates that the collection has changed so drastically that
a reset is required.
public static const UPDATE:String = "update"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates that one or more items were updated within the collection.
The affected item(s)
are stored in the items
property.