包 | mx.events |
类 | public final class CollectionEventKind |
继承 | CollectionEventKind Object |
kind
属性的有效值的常数。这些常数指示对集合进行的更改类型。
另请参见
常量 | 定义方 | ||
---|---|---|---|
ADD : String = "add" [静态] 指示集合添加了一个或多个项目。 | CollectionEventKind | ||
MOVE : String = "move" [静态] 指示项目已从 CollectionEvent oldLocation 属性确定的位置移动到 location 属性确定的位置。 | CollectionEventKind | ||
REFRESH : String = "refresh" [静态] 指示集合应用了排序或/和筛选。 | CollectionEventKind | ||
REMOVE : String = "remove" [静态] 指示集合删除了一个或多个项目。 | CollectionEventKind | ||
REPLACE : String = "replace" [静态] 指示已替换由 CollectionEvent location 属性确定的位置处的项目。 | CollectionEventKind | ||
RESET : String = "reset" [静态] 指示集合已彻底更改,需要进行重置。 | CollectionEventKind | ||
UPDATE : String = "update" [静态] 指示集合中一个或多个项目进行了更新。 | CollectionEventKind |
ADD | 常量 |
public static const ADD:String = "add"
指示集合添加了一个或多个项目。
MOVE | 常量 |
public static const MOVE:String = "move"
指示项目已从 CollectionEvent oldLocation
属性确定的位置移动到 location
属性确定的位置。
REFRESH | 常量 |
public static const REFRESH:String = "refresh"
指示集合应用了排序或/和筛选。此更改可能比 RESET 更容易处理。
REMOVE | 常量 |
public static const REMOVE:String = "remove"
指示集合删除了一个或多个项目。
REPLACE | 常量 |
public static const REPLACE:String = "replace"
指示已替换由 CollectionEvent location
属性确定的位置处的项目。
RESET | 常量 |
public static const RESET:String = "reset"
指示集合已彻底更改,需要进行重置。
UPDATE | 常量 |
public static const UPDATE:String = "update"
指示集合中一个或多个项目进行了更新。受影响的项目或它们的相关联 ObjectChangeEvent 对象在 items
属性中存储。