CRichEditView::OnReplaceAll
Visual Studio 2005
Called by the framework when processing Replace All commands from the Replace dialog box.
virtual void OnReplaceAll( LPCTSTR lpszFind, LPCTSTR lpszReplace, BOOL bCase, BOOL bWord );
Parameters
- lpszFind
-
The text to be replaced.
- lpszReplace
-
The replacement text.
- bCase
-
Indicates if the search is case sensitive.
- bWord
-
Indicates if the search must select whole words or not.
See the example for CRichEditView::FindText.