IChildMgrGetCompleteChildren Method |
Get IDs array of all completed child interviews done in child survey inChildName.
Note: Each child interview gets his own internal ID given by the system
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax int[] GetCompleteChildren(
string inChildName
)
Parameters
- inChildName
- Type: SystemString
The name of the child survey
Return Value
Type:
Int32int[]
Examples
Survey "B" is a child survey of survey "A". During an interview of survey "A", Survey "B" was called and opened 3 times.
In the first time the interview of survey "B" was completed. Its internal ID is 13.
In the second time the interview of survey "B" was stopped and saved i the middle (incomplete). Its internal ID is 14.
In the third time the interview of survey "B" ws completed. Its internal ID is 15.
In this case, GetCompleteChildren("B") will return this integers array: [13, 15].
See Also