ITabularCollectionTValue, TCollectionItem(String, String) Property

Gets or sets 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,
	string columnIndexes
] { get; set; }

Parameters

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

Property Value

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

Remarks

When setting elements simultaneously, the value must be a tabular collection having a number of rows equal to the number of specified row indexes, and a number of columns equal to the number of specified column indexes.

Exceptions

ArgumentNullExceptionrowIndexes is null.
-or-
columnIndexes is null.
-or-
value is null.
ArgumentOutOfRangeExceptionrowIndexes is not a string reserved for tabular collection sub-referencing.
-or-
columnIndexes is not a string reserved for tabular collection sub-referencing.
ArgumentExceptionvalue has not the same dimensions of this instance.

See Also