IUserAccessiableSetAnswerVisible Method (Int32, Int32, Boolean) |
Relevant mainly for Questions that have no topics included. For those use SetTopicVisible
Hides answer inAnswerIdx in question inQuesIdx if the inShow is false or shows it if true
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax void SetAnswerVisible(
int inQuesIdx,
int inAnswerIdx,
bool inShow
)
Parameters
- inQuesIdx
- Type: SystemInt32
Index of question - inAnswerIdx
- Type: SystemInt32
Index of an answer - inShow
- Type: SystemBoolean
true/false
Return Value
Type:
Examples
SetAnswerVisible(Qref(5), 3, true) will make answer 3 of question 5 visible if was hiden.
See Also