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: 9.9.13.0.Release.1490cabe7ee249bd6cc986579d4e6231040bc6f5
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.
Exceptions
See Also