Siebel Object Interfaces Reference > Browser Script Quick Reference > Object Interfaces Reference >

Applet Methods for Browser Script


Table 102 describes a summary of the applet methods you can use in Browser Script.

Table 102. Summary of Applet Methods for Browser Script
Method
Description
Format

ActiveMode Method for an Applet

Returns a string that contains the name of the current Web template mode.

var oApplet;
var mode = oApplet.ActiveMode();

BusComp Method for an Applet

Returns the name of the business component that an applet references.

var oApplet;
var busComp = oApplet.BusComp();

BusObject Method for an Applet

Returns the name of the business object for the business component that an applet references.

var oApplet;
var oBusObject = oApplet.BusObject();

FindActiveXControl Method for an Applet

Returns the name of a control that is a Document Object Model element.

var oApplet;
var oControl;
oControl = oApplet.FindActiveXControl
(controlName as String);

FindControl Method for an Applet

Returns the name of a control.

var oApplet;
var oControl;
oControl = oApplet.FindControl(controlName as String);

InvokeMethod Method for an Applet

Calls a method.

var oApplet;
var outPs;
outPs = oApplet.InvokeMethod(MethodName as String, inputPropSet as PropertySet);

Name Method for an Applet

Returns the name of an applet.

var oApplet;
var name = oApplet.Name();

Siebel Object Interfaces Reference Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Legal Notices.