Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


TextCursorPlacement

Where to place the cursor in the text. (see ISearchView.SetSearchText ).
Read time 1 minuteLast updated 7 days ago

Definition

public enum TextCursorPlacement

Examples

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

Fields

Value

Description

DefaultDo not move the cursor.
MoveAutoCompleteDefault cursor position (end of the line of text).
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.
NoneDo not move the cursor.