HyperlinkCollection

HyperlinkCollection

Overview

HyperlinkCollection is a class in Aspose.Cells FOSS for Java.

Represents a collection of hyperlinks in a worksheet.

Properties

NameTypeAccessDescription
countintReadGets the number of hyperlinks in the collection.

Methods

SignatureDescription
getCount()intGets the number of hyperlinks in the collection.
get(index: int)HyperlinkGets the hyperlink at the specified index.
add(cellName: String, totalRows: int, totalColumns: int, address: String)intAdds a hyperlink anchored at a single cell.
add(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int, address: String)intAdds a hyperlink with explicit row/column coordinates.
add(startCellName: String, endCellName: String, address: String, textToDisplay: String, screenTip: String)intAdds a hyperlink between two cells with optional display text and tooltip.
removeAt(index: int)Removes the hyperlink at the specified index.