{description}
{excerpt}Returns the collection of hyperlinks in the worksheet.{excerpt}
{signature:C#}
 public Hyperlinks Hyperlinks{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Hyperlinks() As Hyperlinks
{signature}
{example}{code:csharp|title=C#}
Hyperlinks links = ws.Hyperlinks;{code}
{code:vb.net|title=vb.net}
Dim links As Hyperlinks = ws.Hyperlinks{code}

{example}