IChildMgrDeleteChildSurvey Method |
Delete the child interview with id inChildID of the 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 void DeleteChildSurvey(
string inChildName,
int inChildID
)
Parameters
- inChildName
- Type: SystemString
The name of the child survey - inChildID
- Type: SystemInt32
The id of the child interview to delete
Examples
Survey "B" is a child survey of survey "A". During an interview of survey "A", Survey "B" was called and opened 3 times.
The first interview of survey "B" got the internal ID of 13.
The second interview of survey "B" got the internal ID of 14.
The third interview of survey "B" got the internal ID of 15.
In this case, DeleteChildSurvey("B", 14) will delete child interview with id 14.
See Also