Siebel Object Interfaces Reference > Browser Scripting >

Control


Table 75 lists a summary of the Control Methods syntax.

Table 75.  Control Methods Syntax Summary
Method
Description
Syntax
Returns the parent applet for the control.

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

Returns the corresponding business component for the control.

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

Returns the value of the property of a control.

var oControl;
oControl.GetProperty(propName);

Returns the value of a control.

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

Returns the name of the control.

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

Sets the visual properties of a control.

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

Sets the contents of the control to the indicated value.

var oControl;
oControl.SetValue(value);


 Siebel Object Interfaces Reference 
 Published: 18 June 2003