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

GUISkin.textArea

建议更改

成功!

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

关闭

提交失败

由于某些原因,您的更改建议无法提交。请 <a>重试</a> 几分钟后。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册
public GUIStyle textArea;

描述

默认情况下,GUI.TextArea 控件使用的样式。

using UnityEngine;

public class Example : MonoBehaviour { // Modifies only the textArea style of the current GUISkin

GUIStyle style; string str = "A string...\nWith two lines.";

void OnGUI() { GUI.skin.textArea = style; str = GUILayout.TextArea(str); } }