Method Find
- Namespace
- Alternet.Editor.TextSource
- Assembly
- Alternet.Editor.v9.dll
Find(string, SearchOptions, Regex, ref Point, out int, out Match, bool)
When implemented by a class, searches for given text within the control's text content.
bool Find(string s, SearchOptions options, Regex expression, ref Point position, out int len, out Match match, bool searchHiddenLines = false)
Parameters
s
stringThe text to locate in the collection.
options
SearchOptionsSpecifies parameters of search.
expression
RegexRepresents a regular expression to find text.
position
PointPosition in strings collection to start search.
len
intReceives length of the found text.
match
MatchReceives match if regular expression search successful.
searchHiddenLines
boolSpecifies if hidden lines should be processed.
Returns
- bool
True if search succeed; otherwise false.
Remarks
If search succeed Position parameter receive location of the found text.