[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IHyperlinks.Count

Count Property

Gets the number of objects in the collection.

For an IHyperlinks collection, this value indicates how many IHyperlink objects are contained in the worksheet or range.

Declaration
int Count { get; }
ReadOnly Property Count As Integer
IRange range = worksheet.Range["A1:A2"];
range.Hyperlinks.Add(worksheet.Range["A1"], "https://www.example.com");
int count = range.Hyperlinks.Count;