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

 public virtual Hyperlink InsertHyperlinkBefore(System.String url, System.String display)
Public Overridable Function InsertHyperlinkBefore(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.InsertHyperlinkBefore("http://www.softartisans.com", "SoftArtisans");
Dim link As Hyperlink = e.InsertHyperlinkBefore("http://www.softartisans.com", "SoftArtisans")