| IChildMgrGetChildSurveyCount Method (String) | 
            Returns the total amount of child interviews made in child survey inChildName
            
 
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntaxint GetChildSurveyCount(
	string inChildName
)
Parameters
- inChildName
 - Type: SystemString
the name of the child survey 
Return Value
Type: 
Int32int
Examples
            The main (parent) survey has 2 child surveys assigned to it, letss refer to those survey as A and B. 
            Currently, survey A was called twice (so there are 2 child interviews of survey A), and survey B was called once (so there's one child interview of survey B)
            GetChildSurveyCount("A") will return the value 2 (as the total child interviews exist for child survey A is 2)
            
See Also