SearchBox.QueryText Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the text contents of the search box.
public:
property Platform::String ^ QueryText { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring QueryText();
void QueryText(winrt::hstring value);
public string QueryText { get; set; }
var string = searchBox.queryText;
searchBox.queryText = string;
Public Property QueryText As String
<SearchBox QueryText="string"/>
Property Value
A string containing the text contents of the search box. The default is an empty string (""). The maximum query text length is 2048 characters.