Version: 2022.1
LanguageEnglish
  • C#

TextCursorPlacement

enumeration

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

Description

Where to place the cursor in the text. (see ISearchView.SetSearchText).

[MenuItem("Examples/ISearchView/SetSearchText_WithCursorPosition")]
public static void SetSearchText_WithCursorPosition()
{
    var view = SearchService.ShowContextual("asset");
    view.SetSearchText("t:material", TextCursorPlacement.MoveLineStart);
}

Properties

NoneDo not move the cursor.
MoveLineEndMove the cursor to the end of the line of text.
MoveLineStartMove the cursor to the beginning of the line of text.
MoveToEndOfPreviousWordMove the cursor to the end of the previous word.
MoveToStartOfNextWordMove the cursor to the start of the previous word.
MoveWordLeftMove the cursor one word to the left.
MoveWordRightMove the cursor one word to the right.
MoveAutoCompleteDefault cursor position (end of the line of text).
DefaultDo not move the cursor.