Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

EditorGUI.TextArea

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function TextArea(position: Rect, text: string, style: GUIStyle = EditorStyles.textField): string;
public static string TextArea(Rect position, string text, GUIStyle style = EditorStyles.textField);
public static function TextArea(position: Rect, text: string, style: GUIStyle = EditorStyles.textField): string;
public static string TextArea(Rect position, string text, GUIStyle style = EditorStyles.textField);

Parámetros

position Rectangle on the screen to use for the text field.
text The text to edit.
style Optional GUIStyle.

Valor de retorno

string The text entered by the user.

Descripción

Make a text area.

This works just like GUI.TextArea, but correctly responds to select all, copy, paste etc. in the editor.


Text Area in an Editor Window.

	// Create a window where you can have notes
	// This doesnt preserve the notes between sessions. 
	//
	// check EditorPrefs Get/SetString to save the notes.
		
	class EditorGUITextArea extends EditorWindow {
		
		var note : String = "Notes:\n->";
		
		@MenuItem("Examples/Notes")
		static function Init() {
			var window = GetWindow(EditorGUITextArea);
			window.Show();
		}
		
		function OnGUI() {
			note = EditorGUI.TextArea(Rect(3,3,position.width - 6, position.height - 35), note);
			if(GUI.Button(Rect(0, position.height - 30, position.width, 25), "Close"))
				this.Close();
		}	
	}