Click or drag to resize
IUserAccessiableParent Property
Parent provides you a way to 'communicate' between child and parent surveys. you call it from within the Child survey.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
IUserAccessiable Parent { get; }

Property Value

Type: IUserAccessiable
Examples
To understand what was the selected value of question number 1 in the parent survey you would use in the child survey Parent.Answer(1) To set a Parent's question answer you could use for example Parent.SetAnswer(2, 3)
See Also