HyperlinkCollection

HyperlinkCollection

Overview

HyperlinkCollection is a class in Aspose.Cells FOSS for C++.

Encapsulates the hyperlinks defined for a worksheet.

Methods

SignatureDescription
GetCount()intGets the number of hyperlinks in the worksheet.
Add(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int, address: std::string_view)intAdds a hyperlink anchored at a cell or rectangular range specified by zero-based coordinates. The zero-based first row index. The zero-based first column index. The total number of rows. The total number of columns. The hyperlink address. The zero-based index of the added hyperlink.
Add(cellName: std::string_view, totalRows: int, totalColumns: int, address: std::string_view)intAdds a hyperlink anchored at a cell or rectangular range specified by zero-based coordinates. The zero-based first row index. The zero-based first column index. The total number of rows. The total number of columns. The hyperlink address. The zero-based index of the added hyperlink.
Add(startCellName: std::string_view, endCellName: std::string_view, address: std::string_view, textToDisplay: std::string_view, screenTip: std::string_view)intAdds a hyperlink anchored at a cell or rectangular range specified by zero-based coordinates. The zero-based first row index. The zero-based first column index. The total number of rows. The total number of columns. The hyperlink address. The zero-based index of the added hyperlink.
RemoveAt(index: int)Removes the hyperlink at the specified zero-based index. The zero-based index of the hyperlink to remove.

See Also