Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Returns the hyperlink at the specified 0\-based index in the collection of hyperlinks in the worksheet.{excerpt}
{signature:C#}
 public Hyperlink this[int index] { get; }
{signature}{signature:vb.net}
Public Default ReadOnly Property Item(ByVal index As Integer) As Hyperlink
{signature}
{parameters}
{param:index}The 0\-based index of the hyperlink in the collection.{param}
{returns}A [Hyperlink|Hyperlink] object representing the hyperlink at the specified index in the collection of hyperlinks in the worksheet.{returns}
{remarks}Hyperlinks are not stored in the order in which they were created.

{remarks}
{example}{code:csharp|title=C#}
Hyperlink link = links.Hyperlink[0];{code}
{code:vb.net|title=vb.net}
Dim link As Hyperlink = links.Hyperlink(0){code}

{example}