Click or drag to resize
IUserAccessiableAnswer Method
Returns the answer of a question. Valid for questions that have one answer like open ended, single choice, numeric etc. Should not be used for questions of type Multiple Selection, Grids etc. for these questions use AnswerChoice

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
DVar Answer(
	int inQuesIdx
)

Parameters

inQuesIdx
Type: SystemInt32

Return Value

Type: DVar
DVar
Examples
Answer(7) == 3 will return true if a value of a numeric quation was set to 3, would return true if the 3rd option of a signle choice question was selected etc.
See Also