Language Version : ActionScript 3.0
Product Version : Flex 4.5
Runtime Versions : Flash Player 10, AIR 2.5
The CellRegion class defines a data structure
used by the Spark data grid classes to represent a rectangular region of
cells in the control.
The origin of the region is specified by the
rowIndex
and
columnIndex
properties.
The extent of the region is specified by the
rowCount
and the
columnCount
properties.
columnCount:int
Language Version : ActionScript 3.0
Product Version : Flex 4.5
Runtime Versions : Flash Player 10, AIR 2.5
The number of columns in the cell region.
The default value is 0
.
Implementation public function get columnCount():int
public function set columnCount(value:int):void
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 origin of the cell region.
A value of -1 indicates that the value is not set.
The default value is -1
.
Implementation public function get columnIndex():int
public function set columnIndex(value:int):void
rowCount:int
Language Version : ActionScript 3.0
Product Version : Flex 4.5
Runtime Versions : Flash Player 10, AIR 2.5
The number of rows in the cell region.
The default value is 0
.
Implementation public function get rowCount():int
public function set rowCount(value:int):void
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 origin of the cell region.
A value of -1 indicates that the value is not set.
The default value is -1
.
Implementation public function get rowIndex():int
public function set rowIndex(value:int):void
public function CellRegion(rowIndex:int = -1, columnIndex:int = -1, rowCount:int = 0, columnCount:int = 0)
Language Version : ActionScript 3.0
Product Version : Flex 4.5
Runtime Versions : Flash Player 10, AIR 2.5
Constructor.
Parameters rowIndex :int
(default = -1
)
— The 0-based row index of the origin cell.
A value of -1 indicates that the value is not set.
columnIndex :int
(default = -1
)
— The 0-based column index of the origin cell.
A value of -1 indicates that the value is not set.
rowCount :int
(default = 0
)
— The number of rows in the cell region.
columnCount :int
(default = 0
)
— The number of columns in the cell region.
The Apache Software Foundation Wed Nov 15 2017, 09:50 AM +01:00