Void SortTopics(int inQuesIdx)
Description
The function sorts the topics by lexicographical order from A-Z
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inQuesIndex | Int | the question index |
Return Type
Void
Overloads
List of overloads for this function:
The function sorts the topics by lexicographical order from Z-A
Void SortTopics(int inQuesIdx, bool inDesc)
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int32 | Target question |
inDesc | bool | "True" or "False" |
Example
- For question 3 the following code will sort the topics by a lexicographical order from A-Z.
SortTopics(QRef(3)) - For question 4 and with several topics and "true" the following code will sort the topics by a lexicographical order from Z-A.
SortTopics(QRef(4), true);
Comments
Please sign in to leave a comment.