Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function PBValues(const Index: Integer): NativeInt; | Obtains a pointer to the integer value of the vector at Index. |
| 2 | function PBValues(const Row: Integer; const Col: Integer): NativeInt; | Returns a pointer to the real value stored at Row and Col. |
Overload 1: function PBValues(const 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 @BValues[i]. Under .NET this is a pointer to unmanaged memory or pinned managed memory.
See Also: MatrixInt.PIValues, MatrixInt.PSValues
Overload 2: function PBValues(const Row: Integer; const Col: Integer): NativeInt;
Returns a pointer to the real value stored at Row and Col.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Row | Integer | |
| 2 | Col | Integer |
Returns: IntPtr