GUISettings.tripleClickSelectsLine 三击选择整行

var tripleClickSelectsLine : bool

Description描述

Should triple-clicking select whole text in text fields.

在文本字段可以三次点击选择正行文本。

By default is set to true.

默认设置为true。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public string str = "This is a string with \n two lines of text";
	void OnGUI() {
		GUI.skin.settings.tripleClickSelectsLine = false;
		str = GUILayout.TextArea(str);
	}
}
// Disables line selecting with triple click on the text area
//禁用鼠标三次点击选择整行文本
var str : String = "This is a dg string with \n two lines of text";

function OnGUI() {
	GUI.skin.settings.tripleClickSelectsLine = false;
	str = GUILayout.TextArea(str);
}
最后修改:2011年1月3日 Monday 20:55

本脚本参考基于Unity 3.4.1f5

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