Creates and returns a Hyperlink at this Position. This hyperlink will have the specified url and displayed text.

 public Hyperlink InsertHyperlink(System.String url, System.String display)
Public Function InsertHyperlink(ByVal url As String, ByVal display As String) As Hyperlink

A String representing the url to link to.

A String representing the text that will be displayed in the document for this hyperlink.

A Hyperlink object representing the newly created hyperlink.

Hyperlink link = e.InsertHyperlink("http://www.softartisans.com", "SoftArtisans");
Dim link As Hyperlink = e.InsertHyperlink("http://www.softartisans.com", "SoftArtisans")