(仅限 Flex 数据可视化组件)
mx.controls.advancedDataGridClasses
public class AdvancedDataGridBaseSelectionData
继承AdvancedDataGridBaseSelectionData Inheritance Object

AdvancedDataGridBaseSelectionData 类定义高级数据网格类用于跟踪 AdvancedDataGrid 控件中所选单元格的数据结构。每个所选单元格由此类的一个实例表示。

另请参见

mx.controls.AdvancedDataGrid


公共属性
 属性定义方
  approximate : Boolean
如果为 true,则 rowIndex 和 columnIndex 属性包含近似值,而不是确切值。
AdvancedDataGridBaseSelectionData
  columnIndex : int
所选单元格的数据提供程序中的列索引。
AdvancedDataGridBaseSelectionData
 Inheritedconstructor : Object
对类对象或给定对象实例的构造函数的引用。
Object
  data : Object
表示所选单元格的数据提供程序中的数据对象。
AdvancedDataGridBaseSelectionData
 Inheritedprototype : Object
[静态] 对类或函数对象的原型对象的引用。
Object
  rowIndex : int
所选单元格的数据提供程序中的行索引。
AdvancedDataGridBaseSelectionData
公共方法
 方法定义方
  
AdvancedDataGridBaseSelectionData(data:Object, rowIndex:int, columnIndex:int, approximate:Boolean)
构造函数。
AdvancedDataGridBaseSelectionData
 Inherited
指示对象是否已经定义了指定的属性。
Object
 Inherited
指示 Object 类的实例是否在指定为参数的对象的原型链中。
Object
 Inherited
指示指定的属性是否存在、是否可枚举。
Object
 Inherited
设置循环操作动态属性的可用性。
Object
 Inherited
返回指定对象的字符串表示形式。
Object
 Inherited
返回指定对象的原始值。
Object
属性详细信息
approximate属性
public var approximate:Boolean

如果为 true,则 rowIndexcolumnIndex 属性包含近似值,而不是确切值。

columnIndex属性 
public var columnIndex:int

所选单元格的数据提供程序中的列索引。如果 approximate 属性为 true,则此值为近似值。

data属性 
public var data:Object

表示所选单元格的数据提供程序中的数据对象。

rowIndex属性 
public var rowIndex:int

所选单元格的数据提供程序中的行索引。如果 approximate 属性为 true,则此值为近似值。

构造函数详细信息
AdvancedDataGridBaseSelectionData()构造函数
public function AdvancedDataGridBaseSelectionData(data:Object, rowIndex:int, columnIndex:int, approximate:Boolean)

构造函数。

参数
data:Object — 表示所选单元格的数据对象。
 
rowIndex:int — 所选项目的数据提供程序中的索引。此值可能是近似值。
 
columnIndex:int — 所选单元格的列索引。
 
approximate:Boolean — 如果为 true,则 index 属性包含的是近似值而不是确切值。