Table of Contents

Method OnTextFound

Namespace
Alternet.Editor.Wpf
Assembly
Alternet.Editor.Wpf.v9.dll

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 string

Name of the file where text found.

text string

Text to find.

options SearchOptions

Search options.

expression Regex

Regular expression to find text.

match Match

Specifies match if regular expression search successful.

position Point

Specifies position of found text.

len int

Specifies length of found text.

multiLine bool

Determines if search text is found on multiple lines.

search ISearch

ISearch where text found.

OnTextFound(ISearch)

Occurs when search text found.

public virtual void OnTextFound(ISearch search)

Parameters

search ISearch

ISearch where text found.