Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

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

InputField.contentType

Switch to Manual
public var contentType: UI.InputField.ContentType;

Description

Specifies the type of the input text content.

The ContentType affects character validation, keyboard type used (on platforms with on-screen keyboards), whether the InputField accepts multiple lines, and whether the text is autocorrected (on platforms that offer input auto-correction) or is treated as a password where the characters are not shown directly.

#pragma strict
// Required when Using UI elements.
public class Example {
	public var mainInputField;
	public var playerName;
	function Start() {
		//Changes the character limit in the main input field.
		mainInputField.characterLimit = playerName.Length;
	}
}