ImageEn, unit iexRichEdit |
|
TIERichEdit.OnURLClick
Declaration
property OnURLClick: TIEUrlClickEvent;
Description
Occurs when the user clicks a URL in the control.
Note: This is the same as TRichEdit.OnLinkClick
procedure TMainForm.EditorURLClick(Sender: TObject; const URL: string; Button: TMouseButton);
begin
ShellExecute(Handle, nil, PChar(URL), nil, nil, SW_SHOWNORMAL)
end;