DisplayQuickPick specifies whether the Search Scope appears as a Quick Pick icon. When a user types a search, and then clicks on the Quick Pick icon, then Internet Explorer® searches using that Search Scope.

Values

true

Specifies that a Quick Pick icon is created to link to the Search Scope.

This is the default value.

false

Specifies that a Quick Pick icon is not created.

Valid Configuration Passes

specialize

Parent Hierarchy

Applies To

For a list of the supported Windows® editions and architectures that this component supports, see Microsoft-Windows-IE-InternetExplorer.

XML Example

The following XML output shows how to create a Quick Pick icon for one Search Scope. In this example, the second Search Scope will show a Quick Pick icon.

  Copy Code
<SearchScopes>
   <Scope wcm:action="add">
	<ScopeDefault>true</ScopeDefault>
	<ScopeDisplayName>MyFirstSearchProvider</ScopeDisplayName>
	<ScopeKey>SearchProvider1</ScopeKey>
	<ScopeUrl>http://www.contoso.com/search?q={searchTerms}</ScopeUrl>
	<DisplayQuickPick>false</DisplayQuickPick>
   </Scope>
   <Scope wcm:action="add">
	<ScopeDisplayName>MySecondSearchProvider</ScopeDisplayName>
	<ScopeKey>SearchProvider2</ScopeKey>
	<ScopeUrl>http://search.fabrikam.com/results.aspx?q=&quot;{searchTerms}&quot;</ScopeUrl>
	<DisplayQuickPick>true</DisplayQuickPick>
   </Scope>
</SearchScopes>

See Also