Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


this[]

Returns the column at the specified index.
Read time 1 minuteLast updated 10 days ago

Definition

this[int]

Returns the column at the specified index.
public Column this[int index] { get; }

Parameters

index

The index of the colum to locate.

Returns

Type

Description

ColumnThe column at the specified index.

this[string]

Returns the column with the specified name.
public Column this[string name] { get; }

Parameters

name

The name of the column to locate.

Returns

Type

Description

ColumnThe column with the specified name.

Remarks

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