CellArea

CellArea

Visión general

CellArea es una clase en Aspose.Cells FOSS para Java.

Representa un área de celdas con límites de fila y columna.

Propiedades

NombreTipoAccesoDescripción
firstRowintLecturaDevuelve la primera fila.
firstColumnintLecturaDevuelve la primera columna.
totalRowsintLecturaDevuelve el total de filas.
totalColumnsintLecturaDevuelve el total de columnas.

Métodos

FirmaDescripción
CellArea(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int)Crea una nueva CellArea con los límites especificados.
getFirstRow()intDevuelve la primera fila.
getFirstColumn()intDevuelve la primera columna.
getTotalRows()intDevuelve el total de filas.
getTotalColumns()intDevuelve el total de columnas.
createCellArea(startRow: int, startColumn: int, endRow: int, endColumn: int)CellAreaCrea una CellArea a partir de las coordenadas de la celda de inicio y fin.
createCellArea(startCellName: String, endCellName: String)CellAreaCrea una CellArea a partir de los nombres de celda de inicio y fin (p. ej., “A1”, “B2”).
 Español