TCA.advanceParam
Advances the specified parameter to the next value in the file.
This must be a parameter of type file or unique number. The argument type is set in VuGen.
TCA.advanceParam(name);
Arguments
name. (string) Name of the parameter to advance.
Return value
A promise that will be fulfilled with no arguments.
Example
TCA.advanceParam(name)TCA.advanceParam("multi_row_param").then(function()
{ TCA.done()
;}).catch(function (error) {
TCA.doneWithError(error);
});