Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Description

Excerpt
Wiki Markup
Creates a new hyperlink in the cell pointing to the specified href. This hyperlink is automatically added to the worksheet. The cell value will be converted to hyperlinks.


Creating a hyperlink to another cell within the workbook is not supported. However, you may use a hyperlink formula to achieve the same functionality. For example,
given the formula
 to link to cell C3 you would use the formula {{=HYPERLINK("
Sheet1
#Sheet1!C3", "Link to C3")
,
Code Block
csharpcsharp
titleC#

cellA1.Formula = "=HYPERLINK(\"Sheet1!C3\", \"Link to C3\")";
Code Block
vb.netvb.net
titlevb.net

TODO}}. Setting {Cell.Formula} with this formula will create the internal hyperlink.

Signature
C#
C#
 public Hyperlink CreateHyperlink(System.String href)

...