Applet Methods for Siebel VB

The following table describes a summary of the applet methods you can use with Siebel VB.

Method Description Format

BusComp Method for an Applet

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

Dim oApplet as Applet

Dim oBusComp as BusComp

Set oBusComp = oApplet.BusComp

BusObject Method for an Applet

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

Dim oApplet as Applet

Dim oBusObject as BusObject

Set oBusObject = oApplet.BusObject

InvokeMethod Method for an Applet

Calls a specialized method.

Dim oApplet as Applet

oApplet.InvokeMethod methodName as String, methArg1, methArg2, methArgN as String or StringArray

Name Method for an Applet

Returns the name of an applet.

Dim oApplet as Applet

Dim sApplet as String

sApplet = oApplet.Name