bool OnAllowUploadOfStoppedInterview()
Description
This callback is used when using the feature that allows upload of stopped interviews. The function needs to return true for the interview to get uploaded when it is stopped. Please note that an uploaded stopped interview is consuming a credit once it is uploaded so you may only want to upload stopped interviews after a certain stage of the interview has been passed etc.)
Return Type
bool
Example
once the interview is stopped upload it only if the answer to Q2 is 1.
function OnAllowUploadOfStoppedInterview()
{
return Answer(QRef(2))==1;
}
Comments
Please sign in to leave a comment.