Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function PValues(const Row: Integer; const col: Integer): NativeInt; | Obtains a pointer to the integer value of the vector at Index. |
| 2 | function PValues(Index: Integer): NativeInt; | Obtains a pointer to the integer value of the vector at Index. |
Overload 1: function PValues(const Row: Integer; const col: Integer): NativeInt;
Obtains a pointer to the integer value of the vector at Index.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Row | Integer | |
| 2 | col | Integer |
Returns: IntPtr
Remarks:
The function returns address of element at Values[i]. Under .NET, internal memory must be Pinned first. See TMtxVecBase.Pin and TMtxVecBase.UnPin
Overload 2: function PValues(Index: Integer): NativeInt;
Obtains a pointer to the integer value of the vector at Index.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Integer | start index |
Returns: IntPtr
Remarks:
The function returns pointer to the current integer relative to the value of the Precision property.