Unity - Scripting API: Search.ISearchView.SetSelection
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Declaration
public void SetSelection(params int[] selection);
Parameters
| selection | Array of item indices to select. |
Description
Updates the search view with a new selection.
.
using UnityEditor; using UnityEditor.Search; static class Example_ISearchView_SetSelection { [MenuItem("Examples/ISearchView/SetSelection")] public static void Run() { var view = SearchService.ShowContextual("asset"); view.SetSearchText("t:MonoScript"); // Use SetSelection specify which items should be selected. view.SetSelection(0, 2, 4); } }