Enum TextCursorPlacement
Where to place the cursor in the text are of a ISearchView (see SetSearchText(string, TextCursorPlacement)).
Namespace: UnityEditor.Search
Assembly: com.unity.quicksearch.dll
Syntax
public enum TextCursorPlacement
Fields
| Name | Description |
|---|---|
| Default | Default cursor position (end of the line of text). |
| MoveAutoComplete | Move the cursor one word to the right for auto complete mode. |
| MoveLineEnd | Move the cursor at the end of the line of text. |
| MoveLineStart | Move the cursor at the beginning of the line of text. |
| MoveToEndOfPreviousWord | Move the cursor the the end of the previous word. |
| MoveToStartOfNextWord | Move the cursor the the start of the previous word. |
| MoveWordLeft | Move the cursor one word to the left. |
| MoveWordRight | Move the cursor one word to the right. |
| None | Do not move the cursor. |