Version: 2021.1
LanguageEnglish
  • C#

ISearchView.SetSearchText

Suggest a change

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.

Close

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.

Close

Cancel

Declaration

public void SetSearchText(string searchText, Search.TextCursorPlacement moveCursor);

Declaration

public void SetSearchText(string searchText, Search.TextCursorPlacement moveCursor, int cursorInsertPosition);

Parameters

searchText Text displayed in the search view.
moveCursor Position of the cursor after setting the search text.

Description

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", TextCursorPlacement.MoveLineStart);
        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);
    }

}