TCollection this[
string rowIndexes,
int columnIndex
] { get; set; }
Default Property Item (
rowIndexes As String,
columnIndex As Integer
) As TCollection
Get
Set
property TCollection default[String^ rowIndexes, int columnIndex] {
TCollection get (String^ rowIndexes, int columnIndex);
void set (String^ rowIndexes, int columnIndex, TCollection value);
}
abstract Item : 'TCollection with get, set
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.
ArgumentNullException | rowIndexes is null. -or- value is null. |
ArgumentOutOfRangeException | rowIndexes 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. |
ArgumentException |
The number of rows in value is not equal to
the to the number of rows of this instance. -or- The number of columns in value is greater than 1. |