[]
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.
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;