DllFunction.NextArgIsInt16

Prototypes

void NextArgIsInt16( <short value> )

Parameters

short 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 SetInt16Arg.

Remarks

This method declares the type of the function's next parameter to be a 16-bit integer.

Example
declare short value = 5;
func.NextArgIsInt16( value );
See Also

DllFunction.SetInt16Arg