ComplexMatrix ITabularCollection<Complex, ComplexMatrix>.this[
IndexCollection rowIndexes,
IndexCollection columnIndexes
] { get; set; }
Private Property Item (
rowIndexes As IndexCollection,
columnIndexes As IndexCollection
) As ComplexMatrix Implements ITabularCollection(Of Complex, ComplexMatrix).Item
Get
Set
private:
virtual property ComplexMatrix^ Item[IndexCollection^ rowIndexes, IndexCollection^ columnIndexes] {
ComplexMatrix^ get (IndexCollection^ rowIndexes, IndexCollection^ columnIndexes) sealed = ITabularCollection<Complex, ComplexMatrix^>::Item::get;
void set (IndexCollection^ rowIndexes, IndexCollection^ columnIndexes, ComplexMatrix^ value) sealed = ITabularCollection<Complex, ComplexMatrix^>::Item::set;
}
private abstract Item : ComplexMatrix with get, set
private override Item : ComplexMatrix 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 contains an index
which is greater than or equal to the number of rows of this instance. -or- columnIndexes contains an index which 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 Count of rowIndexes. -or- The number of columns in value is not equal to the Count of columnIndexes. |