DataFrameColumn.Item[] Property

Definition

Overloads

Item[Int64]

Indexer to get/set values at rowIndex

Item[Int64, Int32]

Returns length number of values starting from startIndex.

Item[Int64]

Indexer to get/set values at rowIndex

public object this[long rowIndex] { get; set; }
member this.Item(int64) : obj with get, set
Default Public Property Item(rowIndex As Long) As Object

Parameters

rowIndex
Int64

The index to look up

Property Value

The value at rowIndex

Applies to

Item[Int64, Int32]

Returns length number of values starting from startIndex.

public System.Collections.Generic.IReadOnlyList<object> this[long startIndex, int length] { get; }
member this.Item(int64 * int) : System.Collections.Generic.IReadOnlyList<obj>
Default Public ReadOnly Property Item(startIndex As Long, length As Integer) As IReadOnlyList(Of Object)

Parameters

startIndex
Int64

The first index to return values from.

length
Int32

The number of values to return.

Property Value

A read only list of values

Applies to