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 hyperlink at the specified 0-based index in the collection of hyperlinks in the worksheet.

Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Default ReadOnly Property Item(ByVal index As Integer) As Hyperlink
Parameters

...

The 0-based index of the hyperlink in the collection.

Returns

A Hyperlink object representing the hyperlink at the specified index in the collection of hyperlinks in the worksheet.

Remarks

Hyperlinks are not stored in the order in which they were created.

{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}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle