Click or drag to resize
IUserAccessiableNotContainsSpecificRate Method
Relevant mainly for Single Choice Grid Questions Returns true if the inValue was not selected in the inTopicIdx topic in the inQuesIdx question

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

Parameters

inQuesIdx
Type: SystemInt32
Index of question
inValue
Type: SystemInt32
The value to check
inTopicIdx
Type: SystemInt32
The topic index

Return Value

Type: Boolean
true/false
Examples
NotContainsSpecificRate(QRef(5),4, 2) will return ture if the 4th option of the 2nd topic was not selected in the Multiple Selection question 5
See Also