Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

InputField.DeactivateInputField

Switch to Manual
public function DeactivateInputField(): void;

Description

Function to deactivate the InputField to stop the processing of Events and send OnSubmit if not canceled.

#pragma strict
// Required when Using UI elements.
public class Example {
	public var mainInputField;
	// Deactivates the main input field when the scene starts.
	function Start() {
		mainInputField.DeactivateInputField();
	}
}