Method OnTextFound
OnTextFound(string, string, SearchOptions, Regex, Match, Point, int, bool, out ISearch)
Raises TextFound
event with specified parameters.
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 was found.
text
stringFound text.
options
SearchOptionsSearchOptions that define search behavior.
expression
RegexRepresents a regular expression to find text.
match
MatchMatch if regular expression search successful.
position
PointPosition where text was found.
len
intLength of found text.
multiLine
boolDetermines if search text is found on multiple lines.
search
ISearchRetrieves
ISearch
object where text was found.
OnTextFound(ISearch)
Raises TextFound
event with specified ISearch
object.
public virtual void OnTextFound(ISearch search)
Parameters
search
ISearchISearch
object where text was found.