# SearchPropositionFlags

> The search proposition flags are used to give additional context to the search proposition.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEditor.Search](/engine/6000.7/script-reference/unityeditor/search.md)
* **Assembly:** UnityEditor

```csharp
[Flags]
public enum SearchPropositionFlags
```

## Remarks

These flags are also used with [SearchPropositionOptions](/engine/6000.7/script-reference/unityeditor/search/searchpropositionoptions.md).

## Fields

| Value                                                                                                               | Description                                                                                  |
| ------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
| [FilterOnly](/engine/6000.7/script-reference/unityeditor/search/searchpropositionflags/filteronly.md)               | This search proposition will only be displayed when auto-completing a filter in text mode.   |
| [ForceAllProviders](/engine/6000.7/script-reference/unityeditor/search/searchpropositionflags/forceallproviders.md) | The query builder use that flag to show all search providers when the search query is empty. |
| [IgnoreRecents](/engine/6000.7/script-reference/unityeditor/search/searchpropositionflags/ignorerecents.md)         | Recent search queries will not be listed as search propositions.                             |
| [NoCategory](/engine/6000.7/script-reference/unityeditor/search/searchpropositionflags/nocategory.md)               | Indicates that the query builder will not show search propositions categories.               |
| [None](/engine/6000.7/script-reference/unityeditor/search/searchpropositionflags/none.md)                           | Indicates no flags are used.                                                                 |
| [QueryBuilder](/engine/6000.7/script-reference/unityeditor/search/searchpropositionflags/querybuilder.md)           | Indicates that the search propositions are fetched for the query block selector.             |
