Void SetText(Int32 inQuesIdx, string inText)
Description
Relevant for all question types. Will change the body text of a question.
Parameters
The following is a list of parameters the functions receivesÂ
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int32 | Question Index |
inText | String | The string object to set in the body |
Return Type
Void
Examples
If we have a question indexed 4, and we would like to set the text in its body, we can use this function as follows: SetText(QRef(4),"Whats up Doc?");
it will change the body text of question 4 to "Whats up Doc?"
Comments
Please sign in to leave a comment.