DllFunction.NextArgIsDouble

Prototypes

void NextArgIsDouble( <double value> )

Parameters

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

Remarks

This method declares the type of the function's next parameter to be a double-precision floating-point number.

Example
declare double value = 5;
func.NextArgIsDouble( value );
See Also

DllFunction.SetDoubleArg