Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

EditorGUI.PasswordField

static function PasswordField(position: Rect, password: string, style: GUIStyle = EditorStyles.textField): string;
static function PasswordField(position: Rect, label: string, password: string, style: GUIStyle = EditorStyles.textField): string;
static function PasswordField(position: Rect, label: GUIContent, password: string, style: GUIStyle = EditorStyles.textField): string;

Parameters

positionRectangle on the screen to use for the password field.
labelOptional label to display in front of the password field.
passwordThe password to edit.
styleOptional GUIStyle.

Returns

string The password entered by the user.

Description

Make a text field where the user can enter a password.

This works just like GUI.PasswordField, but correctly responds to select all, etc. in the editor, and it can have an optional label in front.


Password Field in an Editor Window.

	// Editor Script that creates a password field and lets you visualize what have you
	// typed in a label.
	
	class EditorGUIPasswordField extends EditorWindow {
		
		var text : String = "Some text here";
		
		@MenuItem("Examples/Editor Password field usage")
		static function Init() {
			var window = GetWindow(EditorGUIPasswordField);
			window.Show();
		}
		
		function OnGUI() {
			text = EditorGUI.PasswordField(
				Rect(3,3,position.width - 6, 20),
				"Type Something:",
				text);
			EditorGUI.LabelField(
				Rect(3,25,position.width - 5, 20),
			   "Written Text:", 
			   text);

} }