Associates a file containing property name/value pairs for the nth applet to be included in the AppletContainer frame.
<PARAM NAME = "propertyBag_n" VALUE = "fileName">
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=falseThe 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">