ITabularCollectionTValue, TCollectionItem(Int32, Int32) Property

Gets or sets the element 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#
TValue this[
	int rowIndex,
	int columnIndex
] { get; set; }

Parameters

rowIndex  Int32
The zero-based row index of the element to get or set.
columnIndex  Int32
The zero-based column index of the element to get or set.

Property Value

TValue
The element corresponding to the specified row and column indexes.

Exceptions

ArgumentOutOfRangeExceptionrowIndex is less than zero.
-or-
rowIndex is equal to or greater than NumberOfRows.
-or-
columnIndex is less than zero.
-or-
columnIndex is equal to or greater than NumberOfColumns.

See Also