DllFunction.NextArgIsDoubleArray

Prototypes

void NextArgIsDoubleArray( <double[] array> )

Parameters

double[] 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 SetDoubleArrayArg.

Remarks

This method declares the type of the function's next parameter to be an array of double-precision floating-point numbers.

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

DllFunction.SetDoubleArrayArg