Package | spark.components.gridClasses |
Class | public class CellPosition |
Inheritance | CellPosition Object |
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | Flash Player 10, AIR 2.5 |
See also
Property | Defined By | ||
---|---|---|---|
columnIndex : int
The 0-based column index of the cell. | CellPosition | ||
rowIndex : int
The 0-based row index of the cell. | CellPosition |
Method | Defined By | ||
---|---|---|---|
CellPosition(rowIndex:int = -1, columnIndex:int = -1)
Constructor. | CellPosition |
columnIndex | property |
columnIndex:int
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | Flash Player 10, AIR 2.5 |
The 0-based column index of the cell. A value of -1 indicates that the value is not set.
The default value is -1
.
public function get columnIndex():int
public function set columnIndex(value:int):void
rowIndex | property |
rowIndex:int
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | Flash Player 10, AIR 2.5 |
The 0-based row index of the cell. A value of -1 indicates that the value is not set.
The default value is -1
.
public function get rowIndex():int
public function set rowIndex(value:int):void
CellPosition | () | Constructor |
public function CellPosition(rowIndex:int = -1, columnIndex:int = -1)
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | Flash Player 10, AIR 2.5 |
Constructor.
ParametersrowIndex:int (default = -1 ) — The 0-based row index of the cell.
A value of -1 indicates that the value is not set.
| |
columnIndex:int (default = -1 ) — The 0-based column index of the cell.
A value of -1 indicates that the value is not set.
|