Table of Contents

Constructor TextFoundEventArgs

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

TextFoundEventArgs(ISearch)

Initializes a new instance of the TextFoundEventArgs class with specified parameters.

public TextFoundEventArgs(ISearch search)

Parameters

search ISearch

ISearch engine where text was found.

TextFoundEventArgs(string, string, SearchOptions, Regex, Match, Point, int, bool)

Initializes a new instance of the TextFoundEventArgs class with specified parameters.

public TextFoundEventArgs(string fileName, string text, SearchOptions options, Regex expression, Match match, Point position, int len, bool multiLine)

Parameters

fileName string

Name of file where text found.

text string

Found text.

options SearchOptions

SearchOptions defines search behavior.

expression Regex

Represents a regular expression to find text.

match Match

Match if regular expression search successful.

position Point

Position where text was found.

len int

Length of found text.

multiLine bool

Determines if search text is found on multiple lines.