tripleClickSelectsLine
Should triple-clicking select whole text in text fields.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public bool tripleClickSelectsLine { get; set; }
Remarks
Bu default is set to true.
Examples
using UnityEngine;public class Example : MonoBehaviour{ // Disables line selecting with triple click on the text area string str = "This is a string with \n two lines of text"; void OnGUI() { GUI.skin.settings.tripleClickSelectsLine = false; str = GUILayout.TextArea(str); }}