GetProperty Method for a Property Set

The GetProperty method returns a string that contains the value of a property. If the property does not exist, then this method returns NULL.

Format

oPropSet.GetProperty(propName)

The arguments you can use with this format are the same as the arguments described in GetProperty Method for a Business Service.

Used With

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

Examples

The following fragment of Siebel eScript code receives a set of input properties used with the Shipping Engine business service described in Service_PreInvokeMethod Event:

var sShipper = Inputs.GetProperty("Shipping Company");
var dWeight = Val(Inputs.GetProperty("Weight"));
var dSize = Val(Inputs.GetProperty("Total Dimensions"));
var iZone = Val(Inputs.GetProperty("Zone"));

Related Topics

For more information, see the following topics: