DataViewSchema.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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