bool ContainsSpecificRate(int inQuesIdx, int inValue, int inTopicIdx, int inIter)
Description
Relevant mainly for Single Choice Grid Questions
Returns true if the inValue was selected in the inTopicIdx topic in the inQuesIdx question in iteration inIter
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int | Question Index |
inValue | Int | The value to check |
inTopicIdx | Int | the topic index to check |
inIter | Int | The iteration number |
Return Type
bool
Example
ContainsSpecificRateIter(QRef(5),4, 2, 3) will return ture if the 4th option of the 2nd topic was selected in the Multiple Selection question 5 on the 3rd iteration
Comments
Please sign in to leave a comment.