Enum TextCursorPlacement
Where to place the cursor in the text are of a ISearchView (see SetSearchText(String, TextCursorPlacement)).
Namespace: Unity.QuickSearch
Syntax
public enum TextCursorPlacement
Fields
Name | Description |
---|---|
Default | Default cursor position (end of the line of text). |
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 ove the cursor. |