ComplexMatrix ITabularCollection<Complex, ComplexMatrix>.this[
int rowIndex,
string columnIndexes
] { get; set; }
Private Property Item (
rowIndex As Integer,
columnIndexes As String
) As ComplexMatrix Implements ITabularCollection(Of Complex, ComplexMatrix).Item
Get
Set
private:
virtual property ComplexMatrix^ Item[int rowIndex, String^ columnIndexes] {
ComplexMatrix^ get (int rowIndex, String^ columnIndexes) sealed = ITabularCollection<Complex, ComplexMatrix^>::Item::get;
void set (int rowIndex, String^ 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 | columnIndexes is null. -or- value is null. |
ArgumentOutOfRangeException | rowIndex is
less than zero. -or- rowIndex is greater than or equal to the number of rows of this instance. -or- columnIndexes is not a string reserved for tabular collection sub-referencing. |
ArgumentException |
The number of rows in value is greater than 1. -or- The number of columns in value is not equal to the number of columns of this instance. |