I have a document loaded in a TRichViewEditor (in ReadOnly mode) with many hyperlinks, both in text and in tables. I'd like to traverse the list of hyperlinks to replace text and replace the formatting of the hyperlinks:
Something like (in pseudocode):
Code: Select all
for i := 1 to Hyperlinks.Count do
if Hyperlink.Tag = ATag then begin
Hyperlink.BackColor := clNavy;
Hyperlink.Color := clYellow;
end;
Code: Select all
for i := 1 to Hyperlinks.Count do
if Hyperlink.Tag = ATag then
Hyperlink.Text := NewText;
Thank you very much in advance,
- Manuel Onate