Class QuerySubmittedEventArgs
Provides event data for the QuerySubmitted event.
Inheritance
System.Object
QuerySubmittedEventArgs
Namespace: Telerik.Windows.Controls.AutoSuggestBox
Assembly: Telerik.Windows.Controls.Input.dll
Syntax
public class QuerySubmittedEventArgs : EventArgs
Constructors
QuerySubmittedEventArgs(String, Object)
Initializes a new instance of the QuerySubmittedEventArgs class.
Declaration
public QuerySubmittedEventArgs(string queryText, object suggestion)
Parameters
System.String
queryText
The query text. |
System.Object
suggestion
The chosen suggestion text. |
Properties
QueryText
Gets the query text of the current search.
Declaration
public string QueryText { get; }
Property Value
System.String
|
Suggestion
Gets a reference to the chosen suggestion.
Declaration
public object Suggestion { get; }
Property Value
System.Object
|