Siebel Object Interfaces Reference > Siebel eScript Quick Reference >

PropertySet


Table 87 lists a summary of the PropertySet Methods syntax.

Table 87.  PropertySet Methods Syntax Summary
Method
Description
Syntax
Adds subsidiary property sets to a property set.

var oPropSet;
var iIndex;
oPropSet.AddChild(childObject);

Returns a copy of a property set.

var oPropSet1;
var oPropSet2;
oPropSet2 = oPropSet1.Copy();

Returns a specified child property set of a property set.

var oPropSet;
var sPropVal;
sPropVal = oPropSet.GetChild(index);

Returns the number of child property sets attached to a parent property set.

var oPropSet;
var iCount;
iCount = oPropSet.GetChildCount();

Returns the name of the first property in a property set.

var oPropSet;
var sPropName
sPropName = oPropSet.GetFirstProperty()

Returns the name of the next property in a property set.

var oPropSet;
var sPropName
sPropName = oPropSet.GetNextProperty()

Returns the value of a property when given the property name.

var oPropSet;
var sPropVal
sPropVal = oPropSet.GetProperty(propName)

Returns the number of properties attached to a property set.

var count;
count = oPropSet.GetPropertyCount();

Returns the value stored in a type in a property set.

var oPropSet;
var sTypeVal
sTypeVal = oPropSet.GetType(value)

Returns a value stored as part of a property set.

var oPropSet;
var sValVal;
sValVal = oPropSet.GetValue(value);

Inserts a child property set into a parent property set at a specific location.

var oPropSet;
oPropSet.InsertChildAt(childObject, index);

Returns a Boolean value indicating whether the property specified in the argument exists.

var oPropSet;
oPropSet.PropertyExists(propName);

Removes a child property set as a specified index from a parent property set.

var oPropSet;
oPropSet.RemoveChild(index);

Removes the property specified in its argument from a property set.

var oPropSet;
oPropSet.RemoveProperty(propName);

Removes every property and child property set from a property set.

var oPropSet;
oPropSet.Reset();

Assigns a value to the property of a property set specified in its argument.

var oPropSet;
oPropSet.SetProperty (propName , propValue)

Assigns a data value to a type member of a property set.

var oPropSet;
oPropSet.SetType(value);

Assigns a data value to a value member of a property set.

var oPropSet;
oPropSet.SetValue(value);


 Siebel Object Interfaces Reference 
 Published: 18 June 2003