OnTextFound Method
OnTextFound(String, SearchOptions, Regex, Match, Point, Int32, Boolean, Boolean)
Occurs when search text is found.
Declaration
public void OnTextFound(string text, SearchOptions options, Regex expression, Match match, Point position, int len, bool silent, bool multiline)
Parameters
Type | Name | Description |
---|---|---|
String | text | Text being found. |
SearchOptions | options | Represents options to search text. |
Regex | expression | Represents a regular expression to find text. |
Match | match | Specifies match if regular expression search successful. |
Point | position | Specifies position of found text. |
Int32 | len | Specifies length of found text. |
Boolean | silent | Determines if no visual feedback is required. |
Boolean | multiline | Determines if search text is found on multiple lines. |