Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns the collection of hyperlinks in the worksheet.

{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}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns the collection of hyperlinks in the worksheet.{excerpt}
{signature:C#}
 public Hyperlinks Hyperlinks{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Hyperlinks() As Hyperlinks
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle