[]
Returns an instance of IHyperLinks which may be used to get and set HyperLinks properties.
IHyperlinks Hyperlinks { get; }
ReadOnly Property Hyperlinks As IHyperlinks
IRange range = worksheet.Range["A1"];
IHyperlinks hyperlinks = range.Hyperlinks;
hyperlinks.Add(range, "https://www.example.com");
int hyperlinkCount = hyperlinks.Count;