(Preview)
Package | spark.components.gridClasses |
Class | public class CellRegion |
Inheritance | CellRegion Object |
Language Version: | ActionScript 3.0 |
Product Version: | Flex 4.5 |
Runtime Versions: | Flash Player 10, AIR 2.5 |
rowIndex
and columnIndex
properties.
The extent of the region is specified by the
rowCount
and the columnCount
properties.
Related API Elements
Public Properties
Property | Defined By | ||
---|---|---|---|
columnCount : int
The number of columns in the cell region. | CellRegion | ||
columnIndex : int
The 0-based column index of the origin of the cell region. | CellRegion | ||
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
rowCount : int
The number of rows in the cell region. | CellRegion | ||
rowIndex : int
The 0-based row index of the origin of the cell region. | CellRegion |
Public Methods
Method | Defined By | ||
---|---|---|---|
Constructor. | CellRegion | ||
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
columnCount | property |
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 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 | property |
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 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
Constructor Detail
CellRegion | () | Constructor |
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.
ParametersrowIndex: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.
|
Wed Nov 21 2018, 06:34 AM -08:00