Siebel Object Interfaces Reference > Interfaces Reference > Property Set Methods >

RemoveChild Method


This method removes a child property set from a parent property set.

Syntax

oPropSet.RemoveChild index

Argument
Description

index

An integer representing the index number of the child property set to be removed

Returns

Not applicable

Usage

When a child property set is removed, every child property set with an index higher than that of the removed set has its index decremented by 1.

Used With

Browser Script, COM Data Control, COM Data Server, Java Data Bean, Mobile Web Client Automation Server, Server Script, Web Client Automation Server

Example

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

AddChild Method
InsertChildAt Method

Siebel Object Interfaces Reference Copyright © 2008, Oracle. All rights reserved.