TABLE item definition

Defines attributes for a table layout tag.

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, it is optional but recommended.
  3. attribute-list defines the aspect and behavior of the form item.

Form attributes

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

Style attributes

Common: backgroundColor, border, fontFamily, fontSize, fontStyle, fontWeight, textColor, textDecoration.

Class-specific: allowWebSelection, forceDefaultSettings, headerAlignment, headerHidden, highlightColor, highlightCurrentCell, highlightCurrentRow, highlightTextColor, reduceFilter, rightFrozenColumns, rowActionTrigger, showGrid, tableType, resizeFillsEmptySpace,

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;
...