CellArea
Přehled
CellArea je třída v Aspose.Cells FOSS pro Javu.
Reprezentuje oblast buněk s hranicemi řádků a sloupců.
Vlastnosti
| Název | Typ | Přístup | Popis |
|---|---|---|---|
firstRow | int | Číst | Vrací první řádek. |
firstColumn | int | Číst | Vrací první sloupec. |
totalRows | int | Číst | Vrací celkový počet řádků. |
totalColumns | int | Číst | Vrací celkový počet sloupců. |
Metody
| Signature | Popis |
|---|---|
CellArea(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int) | Vytvoří novou oblast buněk (CellArea) se zadanými hranicemi. |
getFirstRow() → int | Vrací první řádek. |
getFirstColumn() → int | Vrací první sloupec. |
getTotalRows() → int | Vrací celkový počet řádků. |
getTotalColumns() → int | Vrací celkový počet sloupců. |
createCellArea(startRow: int, startColumn: int, endRow: int, endColumn: int) → CellArea | Vytvoří oblast buněk (CellArea) ze souřadnic počáteční a koncové buňky. |
createCellArea(startCellName: String, endCellName: String) → CellArea | Vytvoří oblast buněk (CellArea) ze jmen počáteční a koncové buňky (např. „A1“, „B2“). |