# imagePosition

> How image and text of the GUIContent is combined.

## Definition

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

```csharp
public ImagePosition imagePosition { get; set; }
```

### Examples

```csharp
using UnityEngine;

public class ExampleScript : MonoBehaviour
{
    // Prints how image and text is placed.
    void OnGUI()
    {
        Debug.Log(GUI.skin.button.imagePosition);
    }
}
```
