mx.events
public final class CollectionEventKind
继承CollectionEventKind Inheritance Object

CollectionEventKind 类包含代表 mx.events.CollectionEvent 类 kind 属性的有效值的常数。这些常数指示对集合进行的更改类型。

另请参见

mx.events.CollectionEvent


公共属性
 属性定义方
 Inheritedconstructor : Object
对类对象或给定对象实例的构造函数的引用。
Object
 Inheritedprototype : Object
[静态] 对类或函数对象的原型对象的引用。
Object
公共方法
 方法定义方
 Inherited
指示对象是否已经定义了指定的属性。
Object
 Inherited
指示 Object 类的实例是否在指定为参数的对象的原型链中。
Object
 Inherited
指示指定的属性是否存在、是否可枚举。
Object
 Inherited
设置循环操作动态属性的可用性。
Object
 Inherited
返回指定对象的字符串表示形式。
Object
 Inherited
返回指定对象的原始值。
Object
公共常量
 常量定义方
  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 属性中存储。