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

...

Description

Excerpt

Returns the hyperlink at the specified 0-based index in the collection of hyperlinks in the worksheet.

Signature
C#
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
{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#}
Parameters
Param
index
index

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.

Example
Code Block
csharp
csharp
titleC#

Hyperlink link = links.Hyperlink[0];
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim link As Hyperlink = links.Hyperlink(0)
{code} {example}