ImageEn, unit iexRichEdit |
|
TIERichEdit.OnURLHover
Declaration
property OnURLHover: TIEUrlHoverEvent;
Description
Occurs when the user hovers the mouse over a URL in the control.
Note: You can also enable TIERichEdit.ShowURLHint to show hover hints for links
procedure TMainForm.EditorURLHover(Sender: TObject; const URL: string);
begin
Caption := URL;
end;