HyperlinkCollection
Overview
HyperlinkCollection is a class in Aspose.Cells FOSS for Java.
Represents a collection of hyperlinks in a worksheet.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
count | int | Read | Gets the number of hyperlinks in the collection. |
Methods
| Signature | Description |
|---|---|
getCount() → int | Gets the number of hyperlinks in the collection. |
get(index: int) → Hyperlink | Gets the hyperlink at the specified index. |
add(cellName: String, totalRows: int, totalColumns: int, address: String) → int | Adds a hyperlink anchored at a single cell. |
add(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int, address: String) → int | Adds a hyperlink with explicit row/column coordinates. |
add(startCellName: String, endCellName: String, address: String, textToDisplay: String, screenTip: String) → int | Adds a hyperlink between two cells with optional display text and tooltip. |
removeAt(index: int) | Removes the hyperlink at the specified index. |