IUserAccessiableAppendOpenEndedTextChoice Method |
Relevant mostly for open ended grid questions. This function append the text inText to an existing text in topic inTopic in question inQuesIdx, and set the new text in this topic.
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax bool AppendOpenEndedTextChoice(
int inQuesIdx,
int inTopic,
string inText
)
Parameters
- inQuesIdx
- Type: SystemInt32
the question index - inTopic
- Type: SystemInt32
the topic index - inText
- Type: SystemString
the text to append
Return Value
Type:
Boolean bool
Examples
Question index 4 is an open ended grid question, where topic index 2 was set/answered with this text: "Hello!".
AppendOpenEndedTextChoice(QRef(4), 2, "How are you?") will set topic 2 in question 4 with this text: "Hello!How are you?".
See Also