Click or drag to resize
IUserAccessiableAppendTopicText Method
Relevant only for grid question types. Gets a question index, a topic index, and a text to append to the relevant topic text.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
void AppendTopicText(
	int inQuesIdx,
	int inTopicIdx,
	string inText
)

Parameters

inQuesIdx
Type: SystemInt32
Target question index
inTopicIdx
Type: SystemInt32
Target topic index
inText
Type: SystemString
The string to append to the relevant topic

Return Value

Type: 
None
Examples
If we have a Grid question indexed 4, and we would like to append text to topic number 8 , we can use this function as follows: AppendTopicText(QRef(4),8,"Whats up Doc?"); it will add the text object "Whats up Doc?" to the end of the text in topic
See Also