Click or drag to resize
IUserAccessiableEquals Method
Relevant mainly for Single Choice Questions Returns true if the answer of inQuesIdx is inValue. It is equivalent to Answer(inQuesIdx)==inValue

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

Parameters

inQuesIdx
Type: SystemInt32
Index of question
inValue
Type: SystemObject
The value to check

Return Value

Type: Boolean
true/false
Examples
Equals(Qref(5), 2) will return true if question 5's answer is 2.
See Also