Method Find
Find(string)
When implemented by a class, searches for given text within the control's contents.
bool Find(string text)
Parameters
text
stringText to find.
Returns
- bool
True if search succeed; otherwise false.
Find(string, SearchOptions)
When implemented by a class, searches for given text within the control's contents with specified options.
bool Find(string text, SearchOptions options)
Parameters
text
stringText to find.
options
SearchOptionsRepresents options to search text.
Returns
- bool
True if search succeed; otherwise false.
Find(string, SearchOptions, Regex)
When implemented by a class, searches for given text within the control's contents with specified options using specified regular expression.
bool Find(string text, SearchOptions options, Regex expression)
Parameters
text
stringText to find.
options
SearchOptionsRepresents options to search text.
expression
RegexRepresents a regular expression to find text.
Returns
- bool
True if search succeed; otherwise false.
Find(string, SearchOptions, Regex, IList<IRange>)
When implemented by a class, searches for all occurrences of given text within the control's contents with specified options using specified regular expression.
bool Find(string text, SearchOptions options, Regex expression, IList<IRange> ranges)
Parameters
text
stringText to find.
options
SearchOptionsRepresents options to search text.
expression
RegexRepresents a regular expression to find text.
ranges
IList<IRange>Represents list of ranges determining search results.
Returns
- bool
True if search succeed; otherwise false.
Find(string, SearchOptions, Regex, bool, bool)
When implemented by a class, searches for all occurrences of given text within the control's contents with specified options using specified regular expression.
bool Find(string text, SearchOptions options, Regex expression, bool firstSearch, bool silent)
Parameters
text
stringText to find.
options
SearchOptionsRepresents options to search text.
expression
RegexRepresents a regular expression to find text.
firstSearch
boolSpecifies if search is performed the first time.
silent
boolDetermines if no visual feedback is required.
Returns
- bool
True if search succeed; otherwise false.