Language Version : ActionScript 3.0
Runtime Versions : Flash Player 9, AIR 1.1
The AdvancedDataGridBaseSelectionData class defines a data structure
used by the advanced data grid classes to track selected cells in the AdvancedDataGrid control.
Each selected cell is represented by an instance of this class.
public var approximate:Boolean
Language Version : ActionScript 3.0
Runtime Versions : Flash Player 9, AIR 1.1
If true
, the rowIndex
and columnIndex
properties contain approximate values, and not the exact value.
public var columnIndex:int
Language Version : ActionScript 3.0
Runtime Versions : Flash Player 9, AIR 1.1
The column index in the data provider of the selected cell.
This value is approximate if the approximate
property is true
.
public var data:Object
Language Version : ActionScript 3.0
Runtime Versions : Flash Player 9, AIR 1.1
The data Object from the data provider that represents the selected cell.
public var rowIndex:int
Language Version : ActionScript 3.0
Runtime Versions : Flash Player 9, AIR 1.1
The row index in the data provider of the selected cell.
This value is approximate if the approximate
property is true
.
public function AdvancedDataGridBaseSelectionData(data:Object, rowIndex:int, columnIndex:int, approximate:Boolean)
Language Version : ActionScript 3.0
Runtime Versions : Flash Player 9, AIR 1.1
Constructor.
Parameters data :Object
— The data Object that represents the selected cell.
rowIndex :int
— The index in the data provider of the selected item.
This value may be approximate.
columnIndex :int
— The column index of the selected cell.
approximate :Boolean
— If true
, the index
property
contains an approximate value and not the exact value.
The Apache Software Foundation Wed Nov 15 2017, 09:50 AM +01:00