IUserAccessiableAppendOpenEndedTextIter Method (Int32, Int32, String) |
Relevant mostly for open ended questions. This function append the text inText to an existing text in question inQuesIdx in a specific loop iteration, and set the new text in the question in this iteration.
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax bool AppendOpenEndedTextIter(
int inQuesIdx,
int inIter,
string inText
)
Parameters
- inQuesIdx
- Type: SystemInt32
the question index - inIter
- Type: SystemInt32
the iteration index - inText
- Type: SystemString
the text to append
Return Value
Type:
Boolean bool
Examples
Question index 4 is an open ended question inside a loop chapter, that was set/answered with this text: "Hello!", in iteration index 3.
AppendOpenEndedTextIter(QRef(4), 3, "How are you?") will set question 4 with this text: "Hello!How are you?", for iteration index 3.
See Also