bool CheckTopicsNotValues(int inQuesIdx, params int[] inValues)
Description
checks if the given answer index's were not 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
CheckTopicsNotValues(CurrQues,1,2,3);
will return true if none of the indexes 1,2,3 was selected as an answer to a topic
Comments
Please sign in to leave a comment.