void SetTopicText (Int32 inQuesIdx, Int32 inTopicIdx, string inText)
Description
Relevant for grid questions only. Will change the header text of the topic
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int32 | Question Index |
inTopicIdx | Int32 | The Topic Index to set |
inText | string | The string to write to the answer |
Return Type
void
Examples
If we have a Grid question indexed 4, and we would like to set text to topic number 8 , we can use this function as follows: SetTopicText(QRef(4),8,"Whats up Doc?"); it will change the text of topic 8 to "Whats up Doc?"
Comments
Please sign in to leave a comment.