CellArea
Overview
CellArea is a class in Aspose.Cells FOSS for Java.
Represents a cell area with row and column bounds.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
firstRow | int | Read | Returns the first row. |
firstColumn | int | Read | Returns the first column. |
totalRows | int | Read | Returns the total rows. |
totalColumns | int | Read | Returns the total columns. |
Methods
| Signature | Description |
|---|---|
CellArea(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int) | Creates a new CellArea with the specified bounds. |
getFirstRow() → int | Returns the first row. |
getFirstColumn() → int | Returns the first column. |
getTotalRows() → int | Returns the total rows. |
getTotalColumns() → int | Returns the total columns. |
createCellArea(startRow: int, startColumn: int, endRow: int, endColumn: int) → CellArea | Creates a CellArea from start and end cell coordinates. |
createCellArea(startCellName: String, endCellName: String) → CellArea | Creates a CellArea from start and end cell names (e.g., “A1”, “B2”). |