GetLUT
Top  Previous  Next

Description

Returns the array containing the current lookup table.


Syntax


[VB]
value = objActiveGige.GetLUT 


[C/C++]
HRESULT GetLUT( VARIANT* pLUT );


Data Types
[VB]

Return value: Variant (Array)

Parameters
[C/C++]

pLUT [out,retval]  
Pointer to the SAFEARRAY of floating point values containing the current lookup table.  

Return Values


S_OK  
Success  
E_FAIL  
Failure.  

Example

The following VB example displays several elements of the current lookup table:

LUT=ActiveGige1.GetLUT
MsgBox "LUT(100): ", LUT(100), "LUT(101): ", LUT(101), "LUT(102): ", LUT (102)


Remarks


For more information on the lookup table refer to SetLUT