Hi
my problem in RvHtmlImporter when i import any html code with link tags
<a> </a>
it's not loaded and replaced with
<font color="#0000ff"><u> My link </u></font>
i want it to be with out changes
i appreciate any help.
RvHtmlImporter does not import link tag <a> </a>
-
- Site Admin
- Posts: 17522
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
-
- Site Admin
- Posts: 17522
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Process OnWriteHyperlink event (copy this code to your application):
Code: Select all
procedure TForm3.RichViewEdit1WriteHyperlink(Sender: TCustomRichView;
id: Integer; RVData: TCustomRVData; ItemNo: Integer;
SaveFormat: TRVSaveFormat; var Target, Extras: String);
begin
Target := PChar(RVData.GetItemTag(ItemNo));
end;