bool ContainsChoiceOneOf (Int32 inQuesIdx, Int32 inTopicIndex, params Object[]inValue)
Description
Relevant for single and multiple selection grid questions. Returns true if the values were selected in a specific topic and false otherwise
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int32 | Question Index |
inTopicIndex | Int32 | The selected topic index |
inValue | Object[] | Value to check |
Return Type
bool
Example
ContainsChoiceOneOf(CurrQues, 8, [1,2]) - will return true if answers 1 or 2 were selected for topic 8
Comments
Please sign in to leave a comment.