Click or drag to resize

IMcObjectGetRawValues Method

Gets lValuesCount values starting at lStartingIndex index into a buffer supplied by the caller as an LPVOID cast to a long.

Namespace:  MediaCy.IQL.ObjectManager
Assembly:  MediaCy.IQL.ObjectManager (in MediaCy.IQL.ObjectManager.dll) Version: 10.0.6912.0
Syntax
VB
Function GetRawValues ( 
	lStartingIndex As Integer,
	lValuesCount As Integer,
	ByRef pyValuesBuffer As Byte
) As Integer

Parameters

lStartingIndex
Type: SystemInt32
[in] Starting index in the vector of values.
lValuesCount
Type: SystemInt32
[in] Count of values (not bytes).
pyValuesBuffer
Type: SystemByte
[in] pointer to a memory buffer.

Return Value

Type: Int32
LONG : Count of values actually gotten.
Remarks
IN PROCESS ONLY. The pointed to buffer must be large enough to hold lValuesCount This can only be called from in-process code, since the pyValuesBuffer argument points to an address in the current process space.
See Also