DataFrameColumn.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[Int64] |
Indexer to get/set values at |
Item[Int64, Int32] |
Returns |
Item[Int64]
- Source:
- DataFrameColumn.cs
- Source:
- DataFrameColumn.cs
- Source:
- DataFrameColumn.cs
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]
- Source:
- DataFrameColumn.cs
- Source:
- DataFrameColumn.cs
- Source:
- DataFrameColumn.cs
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