DllFunction.SetInt16ArrayArg

Prototypes

void SetInt16ArrayArg( int nPos, short[] array )

Parameters

int nPos
The number (1-based) of the parameter whose value you want to set.

short[] array
The array to assign to the function parameter.

Remarks

This method assigns a value to the specified parameter. The type of the parameter must have been previously declared with the method NextArgIsInt16Array.

Example
declare short[] array = new short[2];
array[0] = 1;
array[1] = 2;
func.SetInt16ArrayArg( 5, array );
See Also

DllFunction.NextArgIsInt16Array