searchText | Text displayed in the search view. |
moveCursor | Position of the cursor after setting the search text. |
Sets the search query text.
.
using UnityEngine; using UnityEditor; using UnityEditor.Search; static class Example_ISearchView_SetSearchText { [MenuItem("Examples/ISearchView/SetSearchText")] public static void SetInitialText() { var view = SearchService.ShowContextual("asset"); // Set the initial text of Search view. By default the whole text of the search query will be selected. view.SetSearchText("t:prefab"); Debug.Assert(view.context.searchText == "t:prefab"); } [MenuItem("Examples/ISearchView/SetSearchText_WithCursorPosition")] public static void SetSearchText_WithCursorPosition() { var view = SearchService.ShowContextual("asset"); view.SetSearchText("t:material", TextCursorPlacement.MoveLineStart); } }