trichview.com

trichview.support




Re: Hyperlinks again


Return to index


Author

Message

Sergey Tkachenko

Posted: 08/17/2002 12:01:41


You need to work not with the root editor (RVE), but with

RVE.TopLevelEditor.

(it's not necessary when you use ***Current*** methods, but necessary if you

use methods working with item indices).


If you use older version which does not have TopLevelEditor property, use

the followinng function


function GetTopLevelEditor(rve: TCustomRichViewEdit): TCustomRichViewEdit;

begin

  Result := rve;

  while Result.InplaceEditor<>nil do

    Result := TCustomRichViewEdit(Result.InplaceEditor);

end;


> Thank you, everything is fine now.

> However the problem with tables persists. How can I insert a hyperlink in

a

> text that is inside a table?

>

> --Slavi






Powered by ABC Amber Outlook Express Converter