[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.Hyperlinks

Hyperlinks Property

Returns an instance of IHyperLinks which may be used to get and set HyperLinks properties.

Declaration
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;