Version: 2023.1
언어: 한국어

TextCursorPlacement

enumeration

매뉴얼로 전환

설명

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

변수

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.