ISearchPaneQueryChangedEventArgs
ISearchPaneQueryChangedEventArgs
ISearchPaneQueryChangedEventArgs
ISearchPaneQueryChangedEventArgs
Interface
Definition
Provides data for a querychanged event that is associated with a searchPane object.
public : interface ISearchPaneQueryChangedEventArgspublic interface ISearchPaneQueryChangedEventArgsPublic Interface ISearchPaneQueryChangedEventArgs// You can use this interface 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)
|
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 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 information about 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 current query text.
- See Also