Interface IFindReplaceDialog
Provides functionality for showing dialogs for find and replace.
Namespace: Telerik.Windows.Documents.UI.Extensibility
Assembly: Telerik.Windows.Documents.dll
Syntax
public interface IFindReplaceDialog
Properties
IsOpen
Gets a value indicating whether the dialog is open.
Declaration
bool IsOpen { get; }
Property Value
System.Boolean
|
Methods
Close()
Closes the dialog.
Declaration
void Close()
Show(RadRichTextBox, Func<String, Boolean>, String)
Shows the dialog.
Declaration
void Show(RadRichTextBox richTextBox, Func<string, bool> replaceCallback, string textToFind)
Parameters
RadRichTextBox
richTextBox
The associated RadRichTextBox. |
System.Func<System.String, System.Boolean>
replaceCallback
The callback that will be invoked to perform replace. |
System.String
textToFind
The text to initially set in the search field. |