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: 24.2.419.0 (24.2.419.0)
Syntax public 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