propertyBag_n PARAM tag



Associates a file containing property name/value pairs for the nth applet to be included in the AppletContainer frame.

Syntax

<PARAM NAME = "propertyBag_n" VALUE = "fileName">

Values

fileName
The name of an ASCII file containing a list of property name/value pairs. Such a list of property name/value pairs is called a property bag. A property bag file mist reside in the same directory as the HTML page that instantiates the applet to which it applies.

Usage

Each applet to be included in an AppletContainer frame must be identified by number, starting with 0. The applet_n PARAM tag can be accompanied by a corresponding name_n PARAM tag and by a corresponding propertyBag_n PARAM tag, where n = n. Including the propertyBag_n PARAM tag lets you to specify a predefined, reusable set of PARAM tag name/value pairs for an applet in one step.

For example, you might create an ASCII file named ehv.pbg containing the following property bag, which specifies that an eSuite spreadsheet's edit bar and the horizontal and vertical scroll bars are to be hidden:

editline=false
hscroll=false
vscroll=false
The AppletContainer code to instantiate the spreadsheet with these settings looks like this:
<PARAM NAME = "applet_0" VALUE = "lotus.sheet.Sheet">
<PARAM NAME = "name_0" VALUE = "mySheet">
<PARAM NAME = "propertyBag_0" VALUE = "ehv.pbg">

See also
applet_n PARAM tag