Click or drag to resize
IUserAccessiableAppendOpenEndedTextChoiceIter Method (Int32, Int32, Int32, String)
Relevant mostly for open ended grid questions. This function append the text inText to an existing text in topic inTopic in question inQuesIdx, in a specific loop iteration, and set the new text in this topic for this iteration.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
bool AppendOpenEndedTextChoiceIter(
	int inQuesIdx,
	int inTopic,
	int inIter,
	string inText
)

Parameters

inQuesIdx
Type: SystemInt32
the question index
inTopic
Type: SystemInt32
the topic 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 grid question inside a loop chapter, where topic index 2 was set/answered with this text: "Hello!", in iteration index 5. AppendOpenEndedTextChoiceIter(QRef(4), 2, 5, "How are you?") will set topic 2 in question 4 with this text: "Hello!How are you?", for iteration index 5.
See Also