Table of Contents

Property this

Namespace
YndigoBlue.Velocity.Model
Assembly
YndigoBlue.Velocity.dll

this[string]

Gets the column with the specified name from this table.

public Column this[string columnName] { get; }

Parameters

columnName string

The column name.

Property Value

Column

Exceptions

Exception

Thrown when no column with that name exists in this table.

this[int]

Gets the column at the specified zero-based index.

public Column this[int columnIndex] { get; }

Parameters

columnIndex int

The zero-based column index.

Property Value

Column