Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

Selectable.Select

public void Select();

Description

Selects this Selectable.

using UnityEngine;
using System.Collections;
using UnityEngine.UI; // required when using UI elements in scripts
using UnityEngine.EventSystems;// Required when using Event data.

public class ExampleClass : MonoBehaviour// required interface when using the OnSelect method. { public InputField myInputField;

//Do this OnClick. public void SaveGame() { //Makes the Input Field the selected UI Element. myInputField.Select(); } }