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