# SearchColumnFlags

> Search column flags are used to set multiple states.

## Definition

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

```csharp
[Flags]
public enum SearchColumnFlags
```

## Fields

| Value                                                                                                              | Description                                                                                                                                                |
| ------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [CanHide](/engine/6000.6/script-reference/unityeditor/search/searchcolumnflags/canhide.md)                         | Indicates that the user can manually hide the search column in the Search Table view.                                                                      |
| [CanSort](/engine/6000.6/script-reference/unityeditor/search/searchcolumnflags/cansort.md)                         | Indicates that the user can sort the search column in the Search Table view.                                                                               |
| [Default](/engine/6000.6/script-reference/unityeditor/search/searchcolumnflags/default.md)                         | Defines a default set of options for common usages.                                                                                                        |
| [Hidden](/engine/6000.6/script-reference/unityeditor/search/searchcolumnflags/hidden.md)                           | Indicates that the search column is currently hidden in the Search Table view.                                                                             |
| [None](/engine/6000.6/script-reference/unityeditor/search/searchcolumnflags/none.md)                               | Indicates that no column options are used.                                                                                                                 |
| [Sorted](/engine/6000.6/script-reference/unityeditor/search/searchcolumnflags/sorted.md)                           | Indicates that the search column in the Search Table view is currently sorted.                                                                             |
| [SortedDescending](/engine/6000.6/script-reference/unityeditor/search/searchcolumnflags/sorteddescending.md)       | Indicates that the search column in the Search Table view is sorted in descending order. If not defined, it means the column is sorted in ascending order. |
| [TextAlignmentCenter](/engine/6000.6/script-reference/unityeditor/search/searchcolumnflags/textalignmentcenter.md) | Indicates that the search column in the Search Table view is aligning text in the middle.                                                                  |
| [TextAlignmentLeft](/engine/6000.6/script-reference/unityeditor/search/searchcolumnflags/textalignmentleft.md)     | Indicates that the search column in the Search Table view is aligning text to the left.                                                                    |
| [TextAlignmentRight](/engine/6000.6/script-reference/unityeditor/search/searchcolumnflags/textalignmentright.md)   | Indicates that the search column in the Search Table view is aligning text to the right.                                                                   |
