Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

GUISkin.textField

Switch to Manual
public var textField: GUIStyle;

Description

Style used by default for GUI.TextField controls.

	// Modifies only the textField style of the current GUISkin

var style : GUIStyle; private var str : String = "A string...";

function OnGUI() { GUI.skin.textField = style; str = GUILayout.TextField(str); }