Class
QuerySubmittedEventArgs

Provides event data for the QuerySubmitted event.

Definition

Namespace:Telerik.Windows.Controls.AutoSuggestBox

Assembly:Telerik.Windows.Controls.Input.dll

Syntax:

cs-api-definition
public class QuerySubmittedEventArgs : EventArgs

Inheritance: objectEventArgsQuerySubmittedEventArgs

Inherited Members EventArgs.Empty

Constructors

QuerySubmittedEventArgs(string, object)

Initializes a new instance of the QuerySubmittedEventArgs class.

Declaration

cs-api-definition
public QuerySubmittedEventArgs(string queryText, object suggestion)

Parameters

queryText

string

The query text.

suggestion

object

The chosen suggestion text.

Properties

QueryText

Gets the query text of the current search.

Declaration

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

Property Value

string

Suggestion

Gets a reference to the chosen suggestion.

Declaration

cs-api-definition
public object Suggestion { get; }

Property Value

object