Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


displayMode

Indicates how the data is displayed in the UI.
Read time 1 minuteLast updated 12 days ago

Definition

DisplayMode displayMode { get; }

Remarks

Example ISearchView displayMode (displayMode)
.

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); }}