Returns the hyperlink at the specified 0-based index in the collection of hyperlinks in the worksheet.

 public Hyperlink this[int index] { get; }
Public Default ReadOnly Property Item(ByVal index As Integer) As Hyperlink

The 0-based index of the hyperlink in the collection.

A Hyperlink object representing the hyperlink at the specified index in the collection of hyperlinks in the worksheet.

Hyperlinks are not stored in the order in which they were created.

Hyperlink link = links.Hyperlink[0];
Dim link As Hyperlink = links.Hyperlink(0)