| Package | mx.controls.advancedDataGridClasses |
| Class | public class AdvancedDataGridBaseSelectionData |
| Inheritance | AdvancedDataGridBaseSelectionData Object |
See also
| Property | Defined 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 | ||
![]() | constructor : 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 | ||
![]() | prototype : Object [static]
A reference to the prototype object of a class or function object. | Object | |
| rowIndex : int
The row index in the data provider of the selected cell. | AdvancedDataGridBaseSelectionData | ||
| Method | Defined By | ||
|---|---|---|---|
Constructor. | AdvancedDataGridBaseSelectionData | ||
![]() |
Indicates whether an object has a specified property defined. | Object | |
![]() |
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | |
![]() |
Indicates whether the specified property exists and is enumerable. | Object | |
![]() |
Sets the availability of a dynamic property for loop operations. | Object | |
![]() |
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | |
![]() |
Returns the string representation of the specified object. | Object | |
![]() |
Returns the primitive value of the specified object. | Object | |
| approximate | property |
public var approximate:Boolean
If true, the rowIndex and columnIndex
properties contain approximate values, and not the exact value.
| columnIndex | property |
public var columnIndex:int
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:ObjectThe data Object from the data provider that represents the selected cell.
| rowIndex | property |
public var rowIndex:int
The row index in the data provider of the selected cell.
This value is approximate if the approximate property is true.
| AdvancedDataGridBaseSelectionData | () | Constructor |
public function AdvancedDataGridBaseSelectionData(data:Object, rowIndex:int, columnIndex:int, approximate:Boolean)Constructor.
Parametersdata: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.
|