Package | mx.controls.advancedDataGridClasses |
Class | public class AdvancedDataGridBaseSelectionData |
Inheritance | AdvancedDataGridBaseSelectionData Object |
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
See also
Public Properties
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 |
Public Methods
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 |
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.
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.
|
Fri Mar 19 2010, 02:45 AM -07:00