IReadOnlyTabularCollectionTValue, TCollectionItem(String, Int32) Property

Gets the elements of this instance corresponding to the specified row and column indexes.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
TCollection this[
	string rowIndexes,
	int columnIndex
] { get; }

Parameters

rowIndexes  String
The zero-based row indexes of the elements to get. The value must be ":", which means that all valid row indexes are specified.
columnIndex  Int32
The zero-based column index of the elements to get.

Property Value

TCollection
A tabular collection formed by the entries corresponding to the specified row and column indexes.

Exceptions

ArgumentNullExceptionrowIndexes is null.
ArgumentOutOfRangeExceptionrowIndexes is not a string reserved for collection sub-referencing.
-or-
columnIndex is less than zero.
-or-
columnIndex is greater than or equal to the number of columns of this instance.

See Also