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

{example}