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