TCollection this[
string rowIndexes,
string columnIndexes
] { get; set; }
Default Property Item (
rowIndexes As String,
columnIndexes As String
) As TCollection
Get
Set
property TCollection default[String^ rowIndexes, String^ columnIndexes] {
TCollection get (String^ rowIndexes, String^ columnIndexes);
void set (String^ rowIndexes, String^ columnIndexes, 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- columnIndexes is null. -or- value is null. |
ArgumentOutOfRangeException | rowIndexes is not a string reserved
for tabular collection sub-referencing. -or- columnIndexes is not a string reserved for tabular collection sub-referencing. |
ArgumentException | value has not the same dimensions of this instance. |