# this[]

> Returns the column at the specified index.

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine.UIElements](/engine/6000.3/script-reference/unityengine/uielements.md)
* **Assembly:** UnityEngine.UIElementsModule

## this\[int]

Returns the column at the specified index.

```csharp
public Column this[int index] { get; }
```

### Parameters

**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): The index of the colum to locate.

### Returns

| Type                                                                       | Description                        |
| -------------------------------------------------------------------------- | ---------------------------------- |
| [Column](/engine/6000.3/script-reference/unityengine/uielements/column.md) | The column at the specified index. |

## this\[string]

Returns the column with the specified name.

```csharp
public Column this[string name] { get; }
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): The name of the column to locate.

### Returns

| Type                                                                       | Description                         |
| -------------------------------------------------------------------------- | ----------------------------------- |
| [Column](/engine/6000.3/script-reference/unityengine/uielements/column.md) | The column with the specified name. |

### Remarks

Name must be unique in a column collection. Only the first with matching name will be returned.
