DllFunction.SetFloatArg

Prototypes

void SetFloatArg( int nPos, float value )

Parameters

int nPos
The number (1-based) of the parameter whose value you want to set.

float value
The value to assign to the function parameter.

Remarks

This method assigns a value to the specified parameter. The type of the parameter must have been previously declared with the method NextArgIsFloat.

Example
declare float value = 5;
func.SetFloatArg( 2, value );
See Also

DllFunction.NextArgIsFloat