SearchPaneQueryChangedEventArgs
SearchPaneQueryChangedEventArgs
SearchPaneQueryChangedEventArgs
SearchPaneQueryChangedEventArgs
Class
Definition
Provides data for a querychanged event that is associated with a searchPane object.
public : sealed class SearchPaneQueryChangedEventArgs : ISearchPaneQueryChangedEventArgspublic sealed class SearchPaneQueryChangedEventArgs : ISearchPaneQueryChangedEventArgsPublic NotInheritable Class SearchPaneQueryChangedEventArgs Implements ISearchPaneQueryChangedEventArgs// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
Xbox One Extensions for the UWP (introduced v10.0.10586.0)
|
| API contract |
Windows.ApplicationModel.Search.SearchContract (introduced v1)
|
Remarks
This object is passed to an app's querychanged event handler.
Properties
Language Language Language Language
The Internet Engineering Task Force (IETF) language tag (BCP 47 standard) that identifies the language currently associated with the user's text input device.
public : PlatForm::String Language { get; }public string Language { get; }Public ReadOnly Property Language As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The Internet Engineering Task Force (IETF) BCP 47 standard language tag.
- See Also
LinguisticDetails LinguisticDetails LinguisticDetails LinguisticDetails
An object that provides linguistic information about query text that the user is entering through an Input Method Editor (IME).
public : SearchPaneQueryLinguisticDetails LinguisticDetails { get; }public SearchPaneQueryLinguisticDetails LinguisticDetails { get; }Public ReadOnly Property LinguisticDetails As SearchPaneQueryLinguisticDetails// You can use this property in JavaScript.
- Value
- SearchPaneQueryLinguisticDetails SearchPaneQueryLinguisticDetails SearchPaneQueryLinguisticDetails SearchPaneQueryLinguisticDetails
An object that provides linguistic information about the query text.
- See Also
QueryText QueryText QueryText QueryText
The text in the search box when the querychanged event fired.
public : PlatForm::String QueryText { get; }public string QueryText { get; }Public ReadOnly Property QueryText As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The text in the search box when the querychanged event fired.
- See Also