RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TSearchReplace Class

TSearchReplace is the standard action for displaying a find-and-replace dialog.

Pascal
TSearchReplace = class(TSearchAction);
C++
class TSearchReplace : public TSearchAction;

Add TSearchReplace to an action list to add a modeless find-and-replace dialog to your application. Controls such as menu items and tool buttons linked to this action cause the application to display the find-and-replace dialog or bring it to the fore. 

TSearchReplace is designed to work with an edit control (TCustomEdit descendant) as a target. It automatically disables itself if the active control in a form is not an edit control. 

Search/replace actions represent a modeless dialog. As a result, the OnAccept event occurs not when the user exits the dialog, but when the dialog first appears or comes into focus. When the user directs the dialog to replace one or all instances of a string, TSearchReplace automatically performs the search and replaces the specified text in the target edit control. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!