eUploadOfStoppedInterviewStatus OnUploadOfStoppedInterview()
Description
This called when the option to upload a stopped interview is enabled and you would like to set a condition that when true it will upload the stopped interview.
Parameters
there are no specific parameters.
Return Type
eUploadOfStoppedInterviewStatus
Example
function OnUploadOfStoppedInterview(){
var retVal = eUploadOfStoppedInterviewStatus.Stopped;
if (Answer(QRef(X))==2) //when a condition will be true
{
retVal = eUploadOfStoppedInterviewStatus.StoppedWithUpload;
}
return retVal;
}
Comments
Please sign in to leave a comment.