ComplexMatrixItem Property  | 
 
            Gets or sets the value at the specified location in the matrix.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic Complex this[
	int rowIndex,
	int columnIndex
] { get; set; }Public Default Property Item ( 
	rowIndex As Integer,
	columnIndex As Integer
) As Complex
	Get
	Set
public:
property Complex default[int rowIndex, int columnIndex] {
	Complex get (int rowIndex, int columnIndex);
	void set (int rowIndex, int columnIndex, Complex value);
}member Item : Complex with get, set
Parameters
- rowIndex
 - Type: SystemInt32
The row index of the element being queried. - columnIndex
 - Type: SystemInt32
The column index of the element being queried. 
Return Value
Type: 
ComplexThe 
Complex value in the matrix.
Exceptions
See Also