Gets or sets the element at the specified index.
Make it look like a usual matrix (so you can do m[i,j]).
Namespace: OIV.InventorAssembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2025.1.0.Release.bbf67b7ce81225a791aa69eb415ebddead35829d
Syntaxpublic double this[
int i,
int j
] { get; set; }
Public Default Property Item (
i As Integer,
j As Integer
) As Double
Get
Set
public:
property double default[int i, int j] {
double get (int i, int j);
void set (int i, int j, double value);
}
member Item : float with get, set
Parameters
- i
- Type: SystemInt32
Row index. - j
- Type: SystemInt32
Column index.
Return Value
Type:
Doublevalue at the specified index.
ExceptionsException | Condition |
---|
IndexOutOfRangeException | |
See Also