CellAddress
概述
CellAddress 是 Aspose.Cells FOSS for Java 中的一个类。
表示具有行和列索引的单元格地址。
属性
| 名称 | 类型 | 访问 | 描述 |
|---|---|---|---|
rowIndex | int | 读取 | 获取基于零的行索引。 |
columnIndex | int | 读取 | 获取基于零的列索引。 |
方法
| 签名 | 描述 |
|---|---|
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 | 返回此实例的字符串表示形式。 |