Creates a new hyperlink in the specified area of cells. All cell values in the area will be converted to hyperlinks.

 public Hyperlink CreateHyperlink(Area area, System.String href, System.String text)
Public Function CreateHyperlink(ByVal area As Area, ByVal href As String, ByVal text As String) As Hyperlink

An Area object representing the cells that will be converted to hyperlinks.

The hyperlink's destination.

The text to display in the link.

Creating a hyperlink to another cell or range within the workbook is not supported. However, you may use a hyperlink formula to achieve the same functionality. For example, to link to cell C3 you would use the formula =HYPERLINK("#Sheet1!C3", "Link to C3"). Setting Cell.Formula with this formula will create the internal hyperlink.

A new Hyperlink object with the specified destination URL and display text.

links.CreateHyperlink(a, "http://www.softartisans.com", "SoftArtisans");
links.CreateHyperlink(a, "http://www.softartisans.com", "SoftArtisans")