DllFunction.NextArgIsFloatArray

Prototypes

void NextArgIsFloatArray( <float[] array> )

Parameters

float[] 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 SetFloatArrayArg.

Remarks

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

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

DllFunction.SetFloatArrayArg