| TopicEditorWindowFindText Method |
Find the specified text in the editor
Namespace: SandcastleBuilder.Gui.ContentEditorsAssembly: SandcastleBuilderGUI (in SandcastleBuilderGUI.exe) Version: 2014.11.22.0
Syntax public bool FindText(
string textToFind,
bool caseSensitive
)
Public Function FindText (
textToFind As String,
caseSensitive As Boolean
) As Boolean
public:
bool FindText(
String^ textToFind,
bool caseSensitive
)
member FindText :
textToFind : string *
caseSensitive : bool -> bool
Parameters
- textToFind
- Type: SystemString
The text to find - 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, false if not
See Also