Click or drag to resize
IChildMgrGetIncompleteChildren Method
Get IDs array of all incomplete child interviews done in child survey inChildName. Note: Each child interview gets his own internal ID given by the system

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
int[] GetIncompleteChildren(
	string inChildName
)

Parameters

inChildName
Type: SystemString
The name of the child survey

Return Value

Type: Int32
int[]
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: [14].
See Also