CellAddress

CellAddress

概述

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

表示具有行和列索引的单元格地址。

属性

名称类型访问描述
rowIndexint读取获取基于零的行索引。
columnIndexint读取获取基于零的列索引。

方法

签名描述
CellAddress(rowIndex: int, columnIndex: int)使用指定的行和列索引创建一个新的 CellAddress。
getRowIndex()int获取基于零的行索引。
getColumnIndex()int获取基于零的列索引。
parse(cellReference: String)CellAddress将单元格引用字符串(例如 “A1”、 “Z100”)解析为 CellAddress。
equals(obj: Object)boolean将此实例与提供的值进行比较。
hashCode()int指示此实例是否具有 h 代码。
toString()String返回此实例的字符串表示形式。
 中文