DataViewSchema.Item[] Property

Definition

Overloads

Item[Int32]

Get the column by index.

Item[String]

Get the column by name. Throws an exception if such column does not exist. Note that if multiple columns exist with the same name, the one with the biggest index is returned. The other columns are considered 'hidden', and only accessible by their index.

Item[Int32]

Get the column by index.

public Microsoft.ML.DataViewSchema.Column this[int columnIndex] { get; }
member this.Item(int) : Microsoft.ML.DataViewSchema.Column
Default Public ReadOnly Property Item(columnIndex As Integer) As DataViewSchema.Column

Parameters

columnIndex
Int32

Property Value

Implements

Applies to

Item[String]

Get the column by name. Throws an exception if such column does not exist. Note that if multiple columns exist with the same name, the one with the biggest index is returned. The other columns are considered 'hidden', and only accessible by their index.

public Microsoft.ML.DataViewSchema.Column this[string name] { get; }
member this.Item(string) : Microsoft.ML.DataViewSchema.Column
Default Public ReadOnly Property Item(name As String) As DataViewSchema.Column

Parameters

name
String

Property Value

Applies to