Version: 2023.1
public static string TextArea (string text, params GUILayoutOption[] options);
public static string TextArea (string text, GUIStyle style, params GUILayoutOption[] options);

参数

text 要编辑的文本。
style 可选 GUIStyle
options 一个可选的布局选项列表,用于指定额外的布局属性。此处传递的任何值都将覆盖 style 定义的设置。
另请参阅:GUILayout.WidthGUILayout.HeightGUILayout.MinWidthGUILayout.MaxWidthGUILayout.MinHeightGUILayout.MaxHeightGUILayout.ExpandWidthGUILayout.ExpandHeight

返回

string 用户输入的文本。

描述

创建一个文本区域。

This works just like @@GUILayout.TextArea@@ with proper responsiveness to actions like Select all, Copy, Paste in the Editor.
For Undo support, see Undo.RecordObject.
To make the text wrap, set EditorStyles.textField.wordWrap.


快速脚本编辑器。

// Simple script that lets you visualize your scripts in an editor window
// This can be expanded to save your scripts also in the editor window.

using UnityEngine; using UnityEditor;

public class TextAreaExample : EditorWindow { string text = "Nothing Opened..."; TextAsset txtAsset; Vector2 scroll;

[MenuItem("Examples/TextArea usage")] static void Init() { TextAreaExample window = (TextAreaExample)GetWindow(typeof(TextAreaExample), true, "EditorGUILayout.TextArea"); window.Show(); }

Object source;

void OnGUI() { source = EditorGUILayout.ObjectField(source, typeof(Object), true); TextAsset newTxtAsset = (TextAsset)source;

if (newTxtAsset != txtAsset) ReadTextAsset(newTxtAsset);

scroll = EditorGUILayout.BeginScrollView(scroll, GUILayout.Height(position.height - 30)); text = EditorGUILayout.TextArea(text); EditorGUILayout.EndScrollView(); }

void ReadTextAsset(TextAsset txt) { text = txt.text; txtAsset = txt; } }