BBjWindow::addWrappedJComponent

Description

In BBj 7.00 and higher, this method creates a BBjWrappedJComponent in the BBjWindow.

Syntax

Return Value Method
BBjWrappedJComponent addWrappedJComponent(int ID, number x, number y, number w, number h, ClientObject component)

Parameters

Variable

Description

ID

Control ID number. It must be an integer between 1 and 32767 and be unique within a given top-level window.

x

Horizontal position of the upper-left corner of the control in current units.

y

Vertical position of the upper-left corner of the control in current units.

w

Width of the control in current units.

h

Height of the control in current units.

ClientObject

A ClientObject that is associated with a client-side JComponent

 

Return Value

Returns a BBjWrappedJComponent; an Object that is both a ClientObject and a BBjControl. The methods of BBjControl can be invoked on this ClientObject and the methods of the wrapped JComponent can also be invoked on this Object.

Remarks

The ClientObject that is passed into this method must be associated with a JComponent on the client.

Example

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

ClientObject Tutorial

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.