Pivot.GetIndexes Method

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetIndexes(Int32) Returns the sequence of indexes for the specified group.
GetIndexes(Int32, Int32) Gets a sequence of indexes for the grouping.

Pivot.GetIndexes(Int32)

Returns the sequence of indexes for the specified group.
C#
public IEnumerable<int> GetIndexes(
	int index
)

Parameters

index  Int32
The zero-based index of the group to return indexes for.

Return Value

IEnumerable<Int32>
A sequence of indexes of the positions that belong to the group specified by index.

Implements

IGrouping.GetIndexes(Int32)

Pivot.GetIndexes(Int32, Int32)

Gets a sequence of indexes for the grouping.
C#
public IEnumerable<int> GetIndexes(
	int rowIndex,
	int columnIndex
)

Parameters

rowIndex  Int32
The zero-based index of the row of the group.
columnIndex  Int32
The zero-based index of the column of the group.

Return Value

IEnumerable<Int32>
A sequence of indexes.

Implements

IPivot.GetIndexes(Int32, Int32)

See Also