DllFunction.SetInt8Arg

Prototypes

void SetInt8Arg( int nPos, byte value )

Parameters

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

byte 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 NextArgIsInt8.

Example
declare byte value = 5;
func.SetInt8Arg( 2, value );
See Also

DllFunction.NextArgIsInt8