Description


 Inserts a link at the cursor position.



procedure InsertHyperlink (const s: String; url: String);

 Parameter

 Description

 s

 The text that will be the link.

 url

 Link to a web site or local file.



Example


   Form1.RichEdit1.InsertHyperlink('link text', 'http://google.com');
   Form1.RichEdit1.InsertHyperlink('link text', 'd:\picture.jpg');