Class
TextSearchedEventArgs

Class TextSearchedEventArgs. Implements the EventArgs

Definition

Namespace:Telerik.Windows.Controls.SyntaxEditor.UI

Assembly:Telerik.Windows.Controls.SyntaxEditor.dll

Syntax:

cs-api-definition
public class TextSearchedEventArgs : EventArgs

Inheritance: objectEventArgsTextSearchedEventArgs

Inherited Members EventArgs.Empty

Constructors

TextSearchedEventArgs(string, Span?, bool)

Initializes a new instance of the TextSearchedEventArgs class.

Declaration

cs-api-definition
public TextSearchedEventArgs(string searchText, Span? foundSpan, bool isSearchForward)

Parameters

searchText

string

The searched text.

foundSpan

Span?

The found span.

isSearchForward

bool

Is search forward.

Properties

FoundSpan

Gets the found span object.

Declaration

cs-api-definition
public Span? FoundSpan { get; }

Property Value

Span?

The text.

IsSearchForward

Gets the search direction.

Declaration

cs-api-definition
public bool IsSearchForward { get; }

Property Value

bool

The text.

SearchText

Gets the search text.

Declaration

cs-api-definition
public string SearchText { get; }

Property Value

string

The text.