Click or drag to resize
IUserAccessiableSetAnswer Method
Relevant for all question types. Sets the value of an answer/answers in question inQuesIdx with inValues. If the question is of type Multiple Selection or a grid (Single Choice Grid, Numeric Grid etc) it will set the relevant answers with the corresponding values in inValues. First answer will be set with the first value, second answer will be set with the second value etc.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
bool SetAnswer(
	int inQuesIdx,
	params DVar[] inValues
)

Parameters

inQuesIdx
Type: SystemInt32
Index of question
inValues
Type: SurveyToGo.UserLogic.InterfacesDVar
List of values to set

Return Value

Type: Boolean
Examples
If question 5 is a Single Choice question SetAnswer(Qref(5),2) will set the second value as the answer Asusming question 5 is a Numeric Grid SetAnswer(Qref(5),2,5,7) will set the first topic with the value 2, the second topic with the value 5 and the third topic with the value 7. Asusming question 5 is a Single Choice Grid with 3 or more topics and 7 choices then SetAnswer(Qref(5),2,5,7) will set the first topic with the 2nd shoice, the second topic with the 5th choice and the third topic with the 7th choice.
See Also