Gets or sets the value of the element at the given location.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic abstract double this[
	int rowIndex,
	int columnIndex
] { get; set; }Public MustOverride Default Property Item ( 
	rowIndex As Integer,
	columnIndex As Integer
) As Double
	Get
	Set
public:
virtual property double default[int rowIndex, int columnIndex] {
	double get (int rowIndex, int columnIndex) abstract;
	void set (int rowIndex, int columnIndex, double value) abstract;
}abstract Item : float with get, set
Parameters
- rowIndex
 - Type: SystemInt32
The row index of the desired element. - columnIndex
 - Type: SystemInt32
The column index of the desired element. 
Return Value
Type: 
DoubleThe value of the element at the given location.
Exceptions
See Also