Click or drag to resize
IUserAccessiableAddExternalListAnswer Method
This function adds an answer to a pre-loaded external list question.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
bool AddExternalListAnswer(
	int inQuesIdx,
	string inValue,
	string inDisplay
)

Parameters

inQuesIdx
Type: SystemInt32
The Question ID
inValue
Type: SystemString
The coding value of the answer
inDisplay
Type: SystemString
The text of the answer

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 AddExternalListAnswer(1, "55", "Test");
See Also