FindReplaceDialog
Class
FindReplaceDialog
Definition
Namespace:Telerik.Windows.Controls.RichTextBoxUI.Dialogs
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
C#
public class FindReplaceDialog : RadRichTextBoxWindow, INotifyLayoutChange, IDragAware, IFindReplaceDialog, IComponentConnector
Inheritance: objectWindowBaseRadWindowRadRichTextBoxWindowFindReplaceDialog
Implements:
Inherited Members
Constructors
C#
public FindReplaceDialog()
Properties
C#
public RadDocument Document { get; }
C#
public string TextToFind { get; set; }
Methods
C#
public void FindNext()
InitializeComponent
C#
public void InitializeComponent()
Raises the event.
C#
protected override void OnClosed(WindowClosedEventArgs args)
The WindowClosedEventArgs instance containing the event data.
Overrides:
C#
public void ResetFindDialog()
Shows the dialog.
C#
public void Show(RadRichTextBox richTextBox, Action<string> replaceCallback, string textToFind)
The associated RadRichTextBox.
replaceCallbackAction<string>The callback that will be invoked to perform replace.
textToFindstringThe text to initially set in the search field.
Shows the dialog.
C#
public void Show(RadRichTextBox richTextBox, Func<string, bool> replaceCallback, string textToFind)
The associated RadRichTextBox.
replaceCallbackFunc<string, bool>The callback that will be invoked to perform replace.
textToFindstringThe text to initially set in the search field.
Implements: