displayMode
Indicates how the data is displayed in the UI.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Property
- Namespace: UnityEditor.Search
- Assembly: UnityEditor
DisplayMode displayMode { get; }
Remarks

Examples
using UnityEngine;using UnityEditor;using UnityEditor.Search;static class Example_ISearchView_displayMode{ [MenuItem("Examples/ISearchView/displayMode")] public static void Run() { // SearchService can open a SearchView. var view = SearchService.ShowContextual("asset"); // You can assign DisplayMode as iconSizeValue... view.itemIconSize = (float)DisplayMode.List; // ... and this will update displayMode Debug.Assert(view.displayMode == DisplayMode.List); }}