DllFunction.SetInt32Arg

Prototypes

void SetInt32Arg( int nPos, int value )

Parameters

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

int 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 NextArgIsInt32.

Example
declare int value = 5;
func.SetInt32Arg( 2, value );
See Also

DllFunction.NextArgIsInt32