Siebel Object Interfaces Reference > Siebel VB Quick Reference >

Applet Methods for Siebel VB


Table 45 lists a summary of the Applet methods' syntax.

Table 45. Applet Methods Syntax Summary
Method
Description
Syntax

BusComp Method

Function that returns the business component that is associated with the applet.

Dim oApplet as Applet
Dim oBusComp as BusComp
Set oBusComp = oApplet.BusComp

BusObject Method

Function that returns the business object for the business component of the applet.

Dim oApplet as Applet
Dim oBusObject as BusObject
Set oBusObject = oApplet.BusObject

InvokeMethod Method

Invokes the specialized or custom method specified by its argument.

Dim oApplet as Applet
oApplet.InvokeMethod methodName as String, methodArgs as String or StringArray

Name Method

Function that returns the name of the applet.

Dim oApplet as Applet
Dim sApplet as String
sApplet = oApplet.Name

Table 46 lists a summary of the WebApplet Events.

Table 46. WebApplet Events Summary
Event
Description
Syntax

WebApplet_InvokeMethod Event

Called after a specialized method or a user-defined method on the Web applet has been executed.

WebApplet_InvokeMethod(MethodName as String)

WebApplet_PreCanInvokeMethod Event

Called before the PreInvokeMethod, allowing the developer to determine whether or not the user has the authority to invoke the applet method.

WebApplet_PreCanInvokeMethod(MethodName as String, &CanInvoke as String)

WebApplet_PreInvokeMethod Event

Called before a specialized method for the Web applet is invoked or a user-defined method is invoked through oWebApplet.Invoke
Method.

WebApplet_PreInvokeMethod(MethodName as String)

WebApplet_Load Event

Called just after an applet is loaded.

WebApplet_Load

WebApplet_ShowControl Event

Allows scripts to modify the HTML generated by the Siebel Web Engine to render a control on a Web page in a standard interactivity application.

WebApplet_ShowControl

WebApplet_ShowListColumn Event

Allows scripts to modify the HTML generated by the Siebel Web Engine to render a list column on a Web page in a standard interactivity application.

WebApplet_ShowListColumn

Siebel Object Interfaces Reference