IUserAccessiableAddExternalListAnswerIter Method (Int32, String, String, Int32) |
This function adds an answer to a pre-loaded external list question within a loop with a given iteration.
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax bool AddExternalListAnswerIter(
int inQuesIdx,
string inValue,
string inDisplay,
int inIteration
)
Parameters
- inQuesIdx
- Type: SystemInt32
The Question ID - inValue
- Type: SystemString
The coding value of the answer - inDisplay
- Type: SystemString
The text of the answer - inIteration
- Type: SystemInt32
The Iteration Index
Return Value
Type:
Boolean Boolean, a true value if succeeded
Examples
This will add the answer 'Test' with the value of 55 to question's 1 external list in Iteration 3
AddExternalListAnswer(1, "55", "Test",3);
See Also