Click or drag to resize
IUserAccessiableAddExternalListAnswerOtherSpecifyIter Method (Int32, String, String, String)
This function adds an Other Specify type of answer to a pre-loaded external list question within a nested loop.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
bool AddExternalListAnswerOtherSpecifyIter(
	int inQuesIdx,
	string inAnswerCode,
	string inOtherSpecify,
	string inFullIteration
)

Parameters

inQuesIdx
Type: SystemInt32
The Question ID
inAnswerCode
Type: SystemString
inOtherSpecify
Type: SystemString
inFullIteration
Type: SystemString
An Iteration Array representing the location in the nested loop

Return Value

Type: Boolean
Boolean, a true value if succeeded
Examples
This will add the answer 'Other Specify' with the value of 55 to Iteartion 2 of the nested loop within iteration 3 of the nesting loop. AddExternalListAnswer(1, "55", "Other Specify", CreateMultiIterationsString(3,2));
See Also