CellArea
Panoramica
CellArea è una classe in Aspose.Cells FOSS per Java.
Rappresenta un’area di celle con limiti di riga e colonna.
Proprietà
| Nome | Tipo | Accesso | Descrizione |
|---|---|---|---|
firstRow | int | Lettura | Restituisce la prima riga. |
firstColumn | int | Lettura | Restituisce la prima colonna. |
totalRows | int | Lettura | Restituisce il numero totale di righe. |
totalColumns | int | Lettura | Restituisce il numero totale di colonne. |
Metodi
| Firma | Descrizione |
|---|---|
CellArea(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int) | Crea un nuovo CellArea con i limiti specificati. |
getFirstRow() → int | Restituisce la prima riga. |
getFirstColumn() → int | Restituisce la prima colonna. |
getTotalRows() → int | Restituisce il numero totale di righe. |
getTotalColumns() → int | Restituisce il numero totale di colonne. |
createCellArea(startRow: int, startColumn: int, endRow: int, endColumn: int) → CellArea | Crea un CellArea dalle coordinate della cella iniziale e finale. |
createCellArea(startCellName: String, endCellName: String) → CellArea | Crea un CellArea dai nomi della cella iniziale e finale (ad es., “A1”, “B2”). |