ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
mx.controls.advancedDataGridClasses 

AdvancedDataGridBaseSelectionData  - AS3 Flex

Packagemx.controls.advancedDataGridClasses
Classpublic class AdvancedDataGridBaseSelectionData
InheritanceAdvancedDataGridBaseSelectionData Inheritance Object

Language Version: ActionScript 3.0
Product Version: Flex 3
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.

Related API Elements



Public Properties
 PropertyDefined By
  approximate : Boolean
If true, the rowIndex and columnIndex properties contain approximate values, and not the exact value.
AdvancedDataGridBaseSelectionData
  columnIndex : int
The column index in the data provider of the selected cell.
AdvancedDataGridBaseSelectionData
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  data : Object
The data Object from the data provider that represents the selected cell.
AdvancedDataGridBaseSelectionData
  rowIndex : int
The row index in the data provider of the selected cell.
AdvancedDataGridBaseSelectionData
Public Methods
 MethodDefined By
  
AdvancedDataGridBaseSelectionData(data:Object, rowIndex:int, columnIndex:int, approximate:Boolean)
Constructor.
AdvancedDataGridBaseSelectionData
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Property Detail

approximate

property
public var approximate:Boolean

Language Version: ActionScript 3.0
Product Version: Flex 3
Runtime Versions: Flash Player 9, AIR 1.1

If true, the rowIndex and columnIndex properties contain approximate values, and not the exact value.

columnIndex

property 
public var columnIndex:int

Language Version: ActionScript 3.0
Product Version: Flex 3
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.

data

property 
public var data:Object

Language Version: ActionScript 3.0
Product Version: Flex 3
Runtime Versions: Flash Player 9, AIR 1.1

The data Object from the data provider that represents the selected cell.

rowIndex

property 
public var rowIndex:int

Language Version: ActionScript 3.0
Product Version: Flex 3
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.

Constructor Detail

AdvancedDataGridBaseSelectionData

()Constructor
public function AdvancedDataGridBaseSelectionData(data:Object, rowIndex:int, columnIndex:int, approximate:Boolean)

Language Version: ActionScript 3.0
Product Version: Flex 3
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.