DllFunction.NextArgIsFloat

Prototypes

void NextArgIsFloat( <float value> )

Parameters

float 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 SetFloatArg.

Remarks

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

Example
declare float value = 5;
func.NextArgIsFloat( value );
See Also

DllFunction.SetFloatArg