Siebel Object Interfaces Reference > Siebel Web Client Automation Server Quick Reference >

Property Set Methods for Siebel Web Client Automation Server


Table 59 lists a summary of the SiebelPropertySet methods' syntax.

Table 59. SiebelPropertySet Methods Syntax Summary
Method
Description
Syntax

AddChild Method

Adds subsidiary property sets to a property set.

Dim oPropSet as SiebelPropertySet
oPropSet.AddChild(childObject as SiebelPropertySet)

Copy Method

Returns a copy of a property set.

Dim oPropSet1 as SiebelPropertySet
Dim oPropSet2 as SiebelPropertySet
Set oPropSet2 = oPropSet1.Copy

GetChild Method

Returns a specified child property set of a property set.

Dim oPropSet as SiebelPropertySet
Dim oChildPropSet as SiebelPropertySet
Set oChildPropSet = oPropSet.GetChild(index as Long)

GetChildCount Method

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

Dim oPropSet as SiebelPropertySet
Dim iCount as Long
iCount = oPropSet.GetChildCount

GetFirstProperty Method

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

Dim oPropSet as SiebelPropertySet
Dim sPropName as String
sPropName = oPropSet.GetFirstProperty

GetLastErrCode Method

Returns the last error code.

Dim oPropSet as SiebelPropertySet
Dim iErr as Long
iErr = oPropSet.GetLastErrCode

GetLastErrText Method

Returns the last error text message.

Dim oPropSet as SiebelPropertySet
Dim sText as String
sText = oPropSet.GetLastErrText

GetNextProperty Method

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

Dim oPropSet as SiebelPropertySet
Dim sPropName as String
sPropName = oPropSet.GetNextProperty

GetProperty Method

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

Dim oPropSet as SiebelPropertySet
Dim sValue as String
sValue = oPropSet.GetProperty(propName as String)

GetPropertyCount Method

Returns the number of properties attached to a property set.

Dim oPropSet as SiebelPropertySet
Dim iCount as Long
iCount = oPropSet.GetPropertyCount

GetType Method

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

Dim oPropSet as SiebelPropertySet
Dim type as String
type = oPropSet.GetType

GetValue Method

Returns a value stored as part of a property set.

Dim oPropSet as SiebelPropertySet
Dim sValue as String
sValue = oPropSet.GetValue

InsertChildAt Method

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

Dim oPropSet as SiebelPropertySet
oPropSet.InsertChildAt(childObject as SiebelPropertySet, index as Long)

PropertyExists Method

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

Dim oPropSet as SiebelPropertySet
Dim bool as Boolean
bool = oPropSet.PropertyExists(propName as String)

RemoveChild Method

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

Dim oPropSet as SiebelPropertySet
oPropSet.RemoveChild(index as Long)

RemoveProperty Method

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

Dim oPropSet as SiebelPropertySet
oPropSet.RemoveProperty(propName as String)

Reset Method

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

Dim oPropSet as SiebelPropertySet
oPropSet.Reset

SetProperty Method

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

Dim oPropSet as SiebelPropertySet
oPropSet.SetProperty(propName as String, propValue as String)

SetType Method

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

Dim oPropSet as SiebelPropertySet
oPropSet.SetType(value as String)

SetValue Method

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

Dim oPropSet as SiebelPropertySet
oPropSet.SetValue(value as String)

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