[]
Helper class for customizing the Find/Replace dialog.
public class FindReplaceSupport
Implementing the IFindReplaceDialog interface, you receive an object of the FindReplaceSupport class in the BindData(FindReplaceSupport) method. Using properties and methods of this object you cam get data for and support UI in your dialog.
Name | Description |
---|---|
MatchCase | True if the find operation is case sensitive; otherwise, False. |
MatchWholeWord | True if the find operation locates only entire words and not text that's part of a larger word. |
ReplacePattern | Gets or sets replace pattern. |
SearchPattern | Gets or sets search pattern. |
SearchUp | Gets or sets search direction. |
Name | Description |
---|---|
FindNext() | Finds the next search pattern. |
Replace() | Replaces current occurrence of a search pattern with replace pattern. |
ReplaceAll() | Replaces all occurrences of a specified search pattern with the specified replace pattern. |