Click or drag to resize
IUserAccessiableSetText Method
Relevant for all question types. Will change the body text of a question.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
void SetText(
	int inQuesIdx,
	string inText
)

Parameters

inQuesIdx
Type: SystemInt32
Target question index
inText
Type: SystemString
The string object to set in the body

Return Value

Type: 
None
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?"
See Also