Click or drag to resize
IUserAccessiableSetTopicVisible Method (Int32, Boolean)
Relevant mainly for Questions that have topics included. Hides all the topics inQuesIdx if the inShow is false or shows them if true

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

Parameters

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

Return Value

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