The Hyperlinks collection contains all hyperlinks in a worksheet. The Worksheet.Hyperlinks property returns a Hyperlinks collection.

[DefaultMember("Item")]
 public sealed class Hyperlinks : System.Collections.Generic.IEnumerable<Hyperlink>
<DefaultMember("Item")> _
	Public NotInheritable Class Hyperlinks
		Implements System.Collections.Generic.IEnumerable(Of Hyperlink)

          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Open(@"C:\MySpreadsheet.xls");
          Worksheet ws = wb.Worksheets[0];
          Hyperlinks links = ws.Hyperlinks;
        

          Dim xla As New ExcelApplication()
          Dim wb As Workbook = xla.Open("C:\MySpreadsheet.xls")
          Dim ws As Worksheet = wb.Worksheets(0)
          Dim links As Hyperlinks = ws.Hyperlinks
        

Name

Description

Count

Name

Description

Item(Int32)

Name

Description

CreateHyperlink(Area, String)

CreateHyperlink(Area, String, String)

GetEnumerator()