TABLE item definition

Defines attributes for a table layout tag, in a grid-based layout.

Syntax

TABLE layout-tag: item-name [  , attribute-list ] ;
  1. layout-tag is an identifier that defines the name of the layout tag.
  2. item-name identifies the form item.
  3. attribute-list defines the aspect and behavior of the form item.

Attributes

AGGREGATETEXT, COMMENT, DOUBLECLICK, FONTPITCH, HEIGHT, HIDDEN, STYLE, TAG, UNHIDABLECOLUMNS, UNMOVABLECOLUMNS, UNSIZABLECOLUMNS, UNSORTABLECOLUMNS, WANTFIXEDPAGESIZE, WIDTH.

Usage

Define a TABLE element in the ATTRIBUTES section, to configure a table layouted with a <TABLE > layout tag.

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

Example

LAYOUT
GRID
{
<TABLE t1                    >
[c1  |c2        |c3          ]
[c1  |c2        |c3          ]
 ...

}
END
END

ATTRIBUTES
TABLE t1: table1, UNSORTABLECOLUMNS;
...