HyperlinkCollection
Overview
HyperlinkCollection is a class in Aspose.Cells FOSS for C++.
Encapsulates the hyperlinks defined for a worksheet.
Methods
| Signature | Description |
|---|---|
GetCount() → int | Gets the number of hyperlinks in the worksheet. |
Add(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int, address: std::string_view) → int | Adds 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) → int | Adds 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) → int | Adds 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. |