ImageEn, unit iexRichEdit

TIERichEdit.OnURLHover

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


Example

procedure TMainForm.EditorURLHover(Sender: TObject; const URL: string);
begin
  Caption := URL;
end;