RemoveChild Method for a Property Set
The RemoveChild method removes a child property set from a parent property set. This method does not return any information.
Format
oPropSet.RemoveChild index
The following table describes the arguments for the RemoveChild method.
Argument | Description |
---|---|
index |
An integer that identifies the index number of the child property set that Siebel CRM must remove. |
Usage
For information about how Siebel CRM handles indexing for child property sets, see How Siebel CRM Handles Indexing for Child Property Sets in GetChild Method for a Property Set.
Used With
Browser Script, COM Data Control, COM Data Server, Siebel Java Data Bean, Mobile Web Client Automation Server, Server Script
Examples
The following Siebel VB code fragment removes every child property set of a property set:
Dim i As Integer
for i = 0 to outputs.GetChildCount()
outputs.RemoveChild(0)
Next i
Related Topics
For more information, see the following topics: