CellArea

CellArea

概述

CellArea 是 Aspose.Cells FOSS for Java 中的一个类。

表示具有行和列边界的单元格区域。

属性

名称类型访问描述
firstRowint读取返回第一行。
firstColumnint读取返回第一列。
totalRowsint读取返回总行数。
totalColumnsint读取返回总列数。

方法

SignatureDescription
CellArea(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int)使用指定的边界创建一个新的 CellArea。
getFirstRow()int返回第一行。
getFirstColumn()int返回第一列。
getTotalRows()int返回总行数。
getTotalColumns()int返回总列数。
createCellArea(startRow: int, startColumn: int, endRow: int, endColumn: int)CellArea根据起始和结束单元格坐标创建 CellArea。
createCellArea(startCellName: String, endCellName: String)CellArea根据起始和结束单元格名称创建 CellArea(例如 “A1”、 “B2”)。
 中文