Siebel Object Interfaces Reference > Browser Scripting >

Control Methods for Browser Script


Table 66 lists a summary of the Control methods' syntax.

Table 66. Control Methods Syntax Summary
Method
Description
Syntax

Applet Method

Returns the parent applet for the control.

var oControl;
var oApplet;
oApplet = oControl.Applet();

BusComp Method

Returns the corresponding business component for the control.

var oControl;
var busComp;
busComp = oControl.Buscomp();

GetProperty Method

Returns the value of the property of a control.

var oControl;
var propVal;
propVal = oControl.GetProperty( propName);

GetValue Method

Returns the value of a control.

var oControl;
var sValue;
sValue = oControl.GetValue();

Name Method

Returns the name of the control.

var oControl;
var sName;
sName = oControl.Name();

SetProperty Method

Sets the visual properties of a control.

var oControl;
oControl.SetProperty(propName, propValue);

SetValue Method

Sets the contents of the control to the indicated value.

var oControl;
oControl.SetValue(value);

Siebel Object Interfaces Reference