FOLDER stack item

Defines a stack area to hold a set of folder pages, in a stack-based layout.

Syntax

FOLDER [identifier] [ ( attribute-list  ) ]
  folder-page
  [...] 
END
  1. identifier defines the name of the element.
  2. attribute-list defines the aspect and behavior of the form item.
  3. folder-page is a page element in the folder definition.

Attributes

COMMENT , FONTPITCH , STYLE , TAG , HIDDEN.

Can hold

PAGE.

Usage

Use a FOLDER stack layout element to define a set of folder pages with a folder tab widget.

Define each folder page with a PAGE stack item inside the FOLDER container.

For more details about this item type, see FOLDER item type.

Example

FOLDER folder1 ( STYLE="common" )
   PAGE page1 ( TEXT="Order details" )
      ...
   END
   PAGE page2 ( TEXT="Order items" )
      ...
   END
   ...
END