|  | Matrix44DItem Property (Int32, Int32) | 
            Gets or sets the element at the specified index.
            
 
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
 Syntax
Syntaxpublic double this[
	int row,
	int column
] { get; set; }Public Default Property Item ( 
	row As Integer,
	column As Integer
) As Double
	Get
	Set
public:
property double default[int row, int column] {
	double get (int row, int column);
	void set (int row, int column, double value);
}member Item : float with get, set
Parameters
- row
- Type: SystemInt32
 The row index.
- column
- Type: SystemInt32
 The column index.
Property Value
Type: 
DoubleThe element at the specified row and column.
 Exceptions
Exceptions Remarks
Remarks
            The indices are zero-based: [0,0] is the first element, [3,3] is the last element.
            
 See Also
See Also