Click or drag to resize

ITabularCollectionTValue, TCollectionItem Property (Int32, Int32)

Gets or sets the element of this instance corresponding to the specified row and column indexes.

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
TValue this[
	int rowIndex,
	int columnIndex
] { get; set; }

Parameters

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

Property Value

Type: TValue
The element corresponding to the specified row and column indexes.
Exceptions
ExceptionCondition
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