GUI.TextArea 文本区域

static function TextArea (position : Rect, text : String) : String
static function TextArea (position : Rect, text : String, maxLength : int) : String
static function TextArea (position : Rect, text : String, style : GUIStyle) : String
static function TextArea (position : Rect, text : String, maxLength : int, style : GUIStyle) : String

Parameters参数

Returns 返回

string - the edited password.
返回被编辑的密码。

Description描述

Make a Multi-line text area where the user can edit a string.

创建多行文本区域,用户可以编辑字符串。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public string stringToEdit = "Hello World\nI've got 2 lines...";
	void OnGUI() {
		stringToEdit = GUI.TextArea(new Rect(10, 10, 200, 100), stringToEdit, 200);
	}
}
var stringToEdit : String = "Hello World\nI've got 2 lines...";

function OnGUI () {
	//创建多行文本区域,可以修改编辑字符串
	stringToEdit = GUI.TextArea(Rect (10, 10, 200, 100), stringToEdit, 200);
}
最后修改:2011年1月14日 Friday 21:43

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。