[]
Gets the collection of hyperlinks in the worksheet.
Use this property to access, add, and manage worksheet-level hyperlinks through the returned IHyperlinks collection.
IHyperlinks Hyperlinks { get; }
ReadOnly Property Hyperlinks As IHyperlinks
worksheet.Range["A1"].Value = "Example App";
worksheet.Hyperlinks.Add(worksheet.Range["A1"], "https://www.example.com");
IHyperlinks hyperlinks = worksheet.Hyperlinks;
IHyperlink hyperlink = hyperlinks[0];