MatrixInt.PIValues Method

Overload List

#SignatureDescription
1function PIValues(const Index: Integer): NativeInt;Obtains a pointer to the integer value of the vector at Index.
2function PIValues(const Row: Integer; const Col: Integer): NativeInt;Returns a pointer to the real value stored at Row and Col.

Overload 1: function PIValues(const Index: Integer): NativeInt;

Obtains a pointer to the integer value of the vector at Index.

#NameTypeDescription
1IndexIntegerstart index

Returns: IntPtr

Remarks:

The function returns @IValues[i]. Under .NET this is a pointer to unmanaged memory or pinned managed memory.

See Also: MatrixInt.PSValues, MatrixInt.PBValues

Overload 2: function PIValues(const Row: Integer; const Col: Integer): NativeInt;

Returns a pointer to the real value stored at Row and Col.

#NameTypeDescription
1RowInteger
2ColInteger

Returns: IntPtr