Click or drag to resize
IUserAccessiableSetTopicVisible Method (Int32, Int32, Boolean)
Relevant mainly for Questions that have topics included. Hides the topic inTopicIdx in question 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 SetTopicVisible(
	int inQuesIdx,
	int inTopicIdx,
	bool inShow
)

Parameters

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

Return Value

Type: 
Examples
SetTopicVisible(Qref(5), 3, false) will hide topic 3 of question 5.
See Also