DllFunction.NextArgIsInt32Array

Prototypes

void NextArgIsInt32Array( <int[] array> )

Parameters

int[] 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 SetInt32ArrayArg.

Remarks

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

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

DllFunction.SetInt32ArrayArg