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: 24.2.419.0 (24.2.419.0)
Syntax public override double this[
int rowIndex,
int columnIndex
] { get; set; }
Public Overrides 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) override;
void set (int rowIndex, int columnIndex, double value) override;
}
abstract Item : float with get, set
override Item : float 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:
DoubleThe value in the matrix.
Exceptions See Also