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 =HYPERLINK("Sheet1!C3", "Link to C3"),

cellA1.Formula = "=HYPERLINK(\"Sheet1!C3\", \"Link to C3\")";
TODO

 public Hyperlink CreateHyperlink(System.String href)
Public Function CreateHyperlink(ByVal href As String) As Hyperlink

The hyperlink's destination.

A Hyperlink object.

Hyperlink link = cellA1.CreateHyperlink("http://www.softartisans.com");
Dim link As Hyperlink = cellA1.CreateHyperlink("http://www.softartisans.com")