bool CheckTopicsValues(int inQuesIdx, params int[] inValues)
Description
checks if the given answer index's were selected in a single choice grid question.
Parameters
The following is a list of parameters the functions receivesÂ
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int32 | Question Index |
inValues | Int[] | 1 value or more, separated with a comma< |
Return Type
bool
Examples
CheckTopicsValues(CurrQues,1,2,3);
will return true if the responses to the topics are all among indexes 1,2,3
Comments
Please sign in to leave a comment.