int[] GetAnswersIter(int inQuesIdx, int inIter)
Description
Returns an array of the answers indexes selected in a multiple selection question under a specific iteration
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int32 | Question Index |
inIter | Int32 | Iteration Index |
Return Type
Int[]
Overloads
List of overloads for this function
int[] GetAnswersIter(int inQuesIdx, int inIter, bool inRandom)
int[] GetAnswersIter(int inQuesIdx, int inIter, int inMaxSize, bool inRandom)
int[] GetAnswersIter(int inQuesIdx, string inIter)
int[] GetAnswersIter(int inQuesIdx, string inIter, bool inRandom)
int[] GetAnswersIter(int inQuesIdx, string inIter, int inMaxSize, bool inRandom)
Parameters for overloads:
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int32 | Question Index |
inIter | Int32 / string | Iteration Index / Iterations Indexes (Nested Loops) |
inRandom | bool | 'true' to get the selected answers in a random order, or 'false' otherwise. |
inMaxSize | Int32 | An integer specifying the max amount of selected answers to get |
Comments
Please sign in to leave a comment.