# tripleClickSelectsLine

> Should triple-clicking select whole text in text fields.

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.0/script-reference/unityengine.md)
* **Assembly:** UnityEngine.IMGUIModule

```csharp
public bool tripleClickSelectsLine { get; set; }
```

### Remarks

Bu default is set to true.

### Examples

```csharp
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);
    }
}
```
