public Complex this[
string columnIndex
] { get; set; }
Public Default Property Item (
columnIndex As String
) As Complex
Get
Set
public:
property Complex default[String^ columnIndex] {
Complex get (String^ columnIndex);
void set (String^ columnIndex, Complex value);
}
member Item : Complex with get, set
A ComplexMatrixRow instance represents a row of a ComplexMatrix. More thoroughly, since each ComplexMatrixRow is an item in a ComplexMatrixRowCollection, such matrix can be inspected by getting the Matrix property of the given collection.
If setting, the ItemString indexer fires the PropertyChanged event notifying that the name of the changed property is "[" + j + ]", where j is columnIndex, and the new value becomes the entry of Matrix having row and column indexes given by Index and columnIndex, respectively.
If columnIndex represents any value returned by XDataColumn, YDataColumn, or ZDataColumn, then the PropertyChanged event is also fired to notify that properties XData, YData, or ZData have changed values, respectively.
ArgumentException | columnIndex does not represent a valid integer value. |
ArgumentOutOfRangeException | columnIndex does not represent a valid column index for the matrix from which this row has been collected. |