Click or drag to resize
IUserAccessiableSetAnswerVisible Method (Int32, Boolean)
Relevant mainly for Questions that have no topics included. For those use SetTopicVisible Hides all the answers inQuesIdx if the inShow is false or shows it if true

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
void SetAnswerVisible(
	int inQuesIdx,
	bool inShow
)

Parameters

inQuesIdx
Type: SystemInt32
Index of question
inShow
Type: SystemBoolean
true/false

Return Value

Type: 
Examples
SetAnswerVisible(Qref(5), false) will hide all the answers of question 5. You would normally use this to hide all answers before you want to make only few visible.
See Also