DataFrameRow.Item[] Property

Definition

Overloads

Item[Int32]

An indexer to return the value at index.

Item[String]

An indexer to return the value at columnName.

Item[Int32]

An indexer to return the value at index.

public object this[int index] { get; set; }
member this.Item(int) : obj with get, set
Default Public Property Item(index As Integer) As Object

Parameters

index
Int32

The index of the value to return

Property Value

The value at this index.

Applies to

Item[String]

An indexer to return the value at columnName.

public object this[string columnName] { get; set; }
member this.Item(string) : obj with get, set
Default Public Property Item(columnName As String) As Object

Parameters

columnName
String

The name of the column that corresponds to the return value

Property Value

The value at this columnName.

Applies to