| TopicEditorWindowReplaceText Method |
Find and replace the next occurrence of the specified text in the editor
Namespace: SandcastleBuilder.Gui.ContentEditorsAssembly: SandcastleBuilderGUI (in SandcastleBuilderGUI.exe) Version: 2014.11.22.0
Syntax public bool ReplaceText(
string textToFind,
string replaceWith,
bool caseSensitive
)
Public Function ReplaceText (
textToFind As String,
replaceWith As String,
caseSensitive As Boolean
) As Boolean
public:
bool ReplaceText(
String^ textToFind,
String^ replaceWith,
bool caseSensitive
)
member ReplaceText :
textToFind : string *
replaceWith : string *
caseSensitive : bool -> bool
Parameters
- textToFind
- Type: SystemString
The text to find - replaceWith
- Type: SystemString
The replacement text - caseSensitive
- Type: SystemBoolean
True to do a case-sensitive search
or false to do a case-insensitive search
Return Value
Type:
BooleanTrue if the text is found and replaced, false if not
See Also