版本: Unity 6 (6000.0)
语言英语
  • C#

TextCursorPlacement

枚举

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实会阅读用户提出的每项更改建议,并在必要时进行更新。

关闭

提交失败

由于某种原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

描述

在文本中放置光标的位置。(参见 ISearchView.SetSearchText)。

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

属性

不移动光标。
MoveLineEnd将光标移动到文本行的末尾。
MoveLineStart将光标移动到文本行的开头。
MoveToEndOfPreviousWord将光标移动到前一个词的末尾。
MoveToStartOfNextWord将光标移动到下一个词的开头。
MoveWordLeft将光标向左移动一个词。
MoveWordRight将光标向右移动一个词。
MoveAutoComplete默认光标位置(文本行末尾)。
默认不移动光标。