bool NotContainsSpecificRate(int inQuesIdx, int inValue, int inTopicIdx)
Description
Returns true if the inValue was not selected in the inTopicIdx topic in the inQuesIdx question
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 |
Return Type
bool
Example
NotContainsSpecificRate(QRef(5),4, 2) will return ture if the 4th option of the 2nd topic was not selected in the Multiple Selection question 5
Comments
Please sign in to leave a comment.