# FocusType

> Used by GUIUtility.GetControlID to inform the IMGUI system if a given control can get keyboard focus. This allows the IMGUI system to give focus appropriately when a user presses tab for cycling between controls.

## Definition

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

```csharp
public enum FocusType
```

## Fields

| Value                                                                         | Description                                  |
| ----------------------------------------------------------------------------- | -------------------------------------------- |
| [Keyboard](/engine/6000.6/script-reference/unityengine/focustype/keyboard.md) | This control can receive keyboard focus.     |
| [Passive](/engine/6000.6/script-reference/unityengine/focustype/passive.md)   | This control can not receive keyboard focus. |
