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
fileNamestringName of the file where text found.
textstringText to find.
optionsSearchOptionsSearch options.
expressionRegexRegular expression to find text.
matchMatchSpecifies match if regular expression search successful.
positionPointSpecifies position of found text.
lenintSpecifies length of found text.
multiLineboolDetermines if search text is found on multiple lines.
searchISearchISearch where text found.
OnTextFound(ISearch)
Occurs when search text found.
public virtual void OnTextFound(ISearch search)
Parameters
searchISearchISearch where text found.