IUserAccessiableAddExternalListAnswerIter Method (Int32, String, String, String) |
This function adds an answer to a pre-loaded external list question within a nested loop
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax bool AddExternalListAnswerIter(
int inQuesIdx,
string inValue,
string inDisplay,
string inFullIteration
)
Parameters
- inQuesIdx
- Type: SystemInt32
The Question ID - inValue
- Type: SystemString
The coding value of the answer - inDisplay
- Type: SystemString
The text of the answer - 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 'Test' with the value of 55 to Iteartion 2 of the nested loop within iteration 3 of the nesting loop.
AddExternalListAnswer(1, "55", "Test", CreateMultiIterationsString(3,2));
See Also