DllFunction.NextArgIsInt16Array

Prototypes

void NextArgIsInt16Array( <short[] array> )

Parameters

short[] array
The array to assign to this parameter. If you call this method without specifying array, you are specifying the type of the function's parameter without specifying its value. You can specify the value later by calling the method SetInt16ArrayArg.

Remarks

This method declares the type of the function's next parameter to be an array of 16-bit integers.

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

DllFunction.SetInt16ArrayArg