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