CellArea
Visão geral
CellArea é uma classe no Aspose.Cells FOSS para Java.
Representa uma área de célula com limites de linha e coluna.
Propriedades
| Nome | Tipo | Acesso | Descrição |
|---|---|---|---|
firstRow | int | Leitura | Retorna a primeira linha. |
firstColumn | int | Leitura | Retorna a primeira coluna. |
totalRows | int | Leitura | Retorna o total de linhas. |
totalColumns | int | Leitura | Retorna o total de colunas. |
Métodos
| Assinatura | Descrição |
|---|---|
CellArea(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int) | Cria uma nova CellArea com os limites especificados. |
getFirstRow() → int | Retorna a primeira linha. |
getFirstColumn() → int | Retorna a primeira coluna. |
getTotalRows() → int | Retorna o total de linhas. |
getTotalColumns() → int | Retorna o total de colunas. |
createCellArea(startRow: int, startColumn: int, endRow: int, endColumn: int) → CellArea | Cria uma CellArea a partir das coordenadas das células de início e fim. |
createCellArea(startCellName: String, endCellName: String) → CellArea | Cria uma CellArea a partir dos nomes das células de início e fim (por exemplo, “A1”, “B2”). |