this[]
Returns the column at the specified index.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Property
- Namespace: UnityEngine.UIElements
- Assembly: UnityEngine.UIElementsModule
this[int]
Returns the column at the specified index.
public Column this[int index] { get; }
Parameters
The index of the colum to locate.
Returns
Type | Description |
|---|---|
| Column | The column at the specified index. |
this[string]
Returns the column with the specified name.
public Column this[string name] { get; }
Parameters
The name of the column to locate.
Returns
Type | Description |
|---|---|
| Column | The column with the specified name. |
Remarks
Name must be unique in a column collection. Only the first with matching name will be returned.