Method OnTextFound
OnTextFound(string, string, SearchOptions, Regex, Match, Point, int, bool, out ISearch)
Occurs when search text found.
public virtual void OnTextFound(string fileName, string text, SearchOptions options, Regex expression, Match match, Point position, int len, bool multiLine, out ISearch search)
Parameters
fileName
stringName of the file where text found.
text
stringText to find.
options
SearchOptionsSearch options.
expression
RegexRegular expression to find text.
match
MatchSpecifies match if regular expression search successful.
position
PointSpecifies position of found text.
len
intSpecifies length of found text.
multiLine
boolDetermines if search text is found on multiple lines.
search
ISearchISearch where text found.
OnTextFound(ISearch)
Occurs when search text found.
public virtual void OnTextFound(ISearch search)
Parameters
search
ISearchISearch where text found.