# useGUILayout

> Disabling this lets you skip the GUI layout phase.

## Definition

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

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

### Remarks

It can only be used if you do not use [GUI.Window](/engine/6000.7/script-reference/unityengine/gui/window.md) and GUILayout inside of this OnGUI call.

### Examples

```csharp
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour
{
    public void Start()
    {
        //Disabling this lets you skip the GUI layout phase.
        useGUILayout = false;
    }
}
```
