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
fileNamestringName of the file where text was found.
textstringFound text.
optionsSearchOptionsSearchOptions that define search behavior.
expressionRegexRepresents a regular expression to find text.
matchMatchMatch if regular expression search successful.
positionPointPosition where text was found.
lenintLength of found text.
multiLineboolDetermines if search text is found on multiple lines.
searchISearchRetrieves
ISearchobject where text was found.
OnTextFound(ISearch)
Raises TextFound event with specified ISearch object.
public virtual void OnTextFound(ISearch search)
Parameters
searchISearchISearchobject where text was found.