Click or drag to resize
IUserAccessiableContainsIterOneOf Method (Int32, Int32, Object)
Relevant mainly for Multiple Selection Questions that are part of an iteration Returns true if one or more of the inValues was selected in the inQuesIdx question as one of the answers in inIter iteration

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

Parameters

inQuesIdx
Type: SystemInt32
Index of question
inIter
Type: SystemInt32
The iteration number
inValues
Type: SystemObject
The values to check

Return Value

Type: Boolean
true/false
Examples
ContainsIterOneOf(QRef(5), 2, 1, 4, 6) will return ture if one or more of the 1st, 4th or 6th options were selected in the Multiple Selection question 5 in the 2nd iteration
See Also