CellAddress
Overview
CellAddress is a class in Aspose.Cells FOSS for Java.
Represents a cell address with row and column indices.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
rowIndex | int | Read | Gets the zero-based row index. |
columnIndex | int | Read | Gets the zero-based column index. |
Methods
| Signature | Description |
|---|---|
CellAddress(rowIndex: int, columnIndex: int) | Creates a new CellAddress with the specified row and column indices. |
getRowIndex() → int | Gets the zero-based row index. |
getColumnIndex() → int | Gets the zero-based column index. |
parse(cellReference: String) → CellAddress | Parses a cell reference string (e.g., “A1”, “Z100”) into a CellAddress. |
equals(obj: Object) → boolean | Compares this instance with the provided value. |
hashCode() → int | Indicates whether this instance has h code. |
toString() → String | Returns the string representation of this instance. |