Class QuerySubmittedEventArgs
Provides event data for the QuerySubmitted event.
Inheritance
System.Object
System.EventArgs
QuerySubmittedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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
|