IUserAccessiableAppendAnswerText Method |
Relevant only for multi\single mention question types.
Gets a question index, an answer index, and a text to append to the relevant answertext.
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax void AppendAnswerText(
int inQuesIdx,
int inAnswerIdx,
string inText
)
Parameters
- inQuesIdx
- Type: SystemInt32
Target question index - inAnswerIdx
- Type: SystemInt32
Target answer index - inText
- Type: SystemString
The string to append to the relevant answer
Return Value
Type:
None
Examples If we have a question indexed 4, and we would like to append text to answer number 8 , we can use this function
as follows: AppendAnswerText(QRef(4),8,"Whats up Doc?");
it will add the text object "Whats up Doc?" to the end of the text in answer.
See Also