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