Paket | mx.events |
Klass | public final class CollectionEventKind |
Arv | CollectionEventKind Object |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
kind
property.
These constants indicate the kind of change that was made to the collection.
Relaterade API-element
Konstant | Definieras med | ||
---|---|---|---|
ADD : String = "add" [statisk]
Indicates that the collection added an item or items. | CollectionEventKind | ||
MOVE : String = "move" [statisk]
Indicates that the item has moved from the position identified
by the CollectionEvent oldLocation property to the
position identified by the location property. | CollectionEventKind | ||
REFRESH : String = "refresh" [statisk]
Indicates that the collection applied a sort, a filter, or both. | CollectionEventKind | ||
REMOVE : String = "remove" [statisk]
Indicates that the collection removed an item or items. | CollectionEventKind | ||
REPLACE : String = "replace" [statisk]
Indicates that the item at the position identified by the
CollectionEvent location property has been replaced. | CollectionEventKind | ||
RESET : String = "reset" [statisk]
Indicates that the collection has changed so drastically that
a reset is required. | CollectionEventKind | ||
UPDATE : String = "update" [statisk]
Indicates that one or more items were updated within the collection. | CollectionEventKind |
ADD | Konstant |
public static const ADD:String = "add"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Indicates that the collection added an item or items.
MOVE | Konstant |
public static const MOVE:String = "move"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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.
REFRESH | Konstant |
public static const REFRESH:String = "refresh"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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.
REMOVE | Konstant |
public static const REMOVE:String = "remove"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Indicates that the collection removed an item or items.
REPLACE | Konstant |
public static const REPLACE:String = "replace"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Indicates that the item at the position identified by the
CollectionEvent location
property has been replaced.
RESET | Konstant |
public static const RESET:String = "reset"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Indicates that the collection has changed so drastically that a reset is required.
UPDATE | Konstant |
public static const UPDATE:String = "update"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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.
Tue Jun 12 2018, 01:40 PM Z