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

GUI.TextArea

建议修改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法采纳所有提交的内容,但我们会阅读用户提出的每一项修改建议,并在适用的情况下进行更新。

关闭

提交失败

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

关闭

取消

声明

public static string TextArea(Rect position, string text);

声明

public static string TextArea(Rect position, string text, int maxLength);

声明

public static string TextArea(Rect position, string text, GUIStyle style);

声明

public static string TextArea(Rect position, string text, int maxLength, GUIStyle style);

参数

position 屏幕上用于文本字段的矩形。
text 要编辑的文本。此函数的返回值应分配回字符串,如示例所示。
maxLength 字符串的最大长度。如果省略,用户可以无限期地输入。
style 要使用的样式。如果省略,将使用当前 GUISkin 中的 textArea 样式。

返回值

string 编辑后的字符串。

描述

创建一个多行文本区域,用户可以在其中编辑字符串。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public string stringToEdit = "Hello World\nI've got 2 lines...";

void OnGUI() { // Make a multiline text area that modifies stringToEdit. stringToEdit = GUI.TextArea(new Rect(10, 10, 200, 100), stringToEdit, 200); } }