ImageEn, unit iexRichEdit |
|
TIERichEdit.OnTextNotFound
Declaration
property OnTextNotFound: TIEFindErrorEvent;
Description
Occurs when the text entered by a user in a
Find or
Replace dialog cannot be found.
procedure TForm1.IERichEdit1TextNotFound(Sender: TObject; const FindText: string);
begin
MessageDlg( Format( 'Text not found: %s', [ FindText ]), mtWarning, [mbOK], 0);
end;