Table styleΒΆ

style = flags

The following flags are currently available:

WS_INVISIBLE

Create invisible.

WS_NOTABSTOP

Stop table from receiving input focus.

WS_DISABLED

Create disabled.

WS_CLICKONLY

Only allow the table to receive input focus if the user clicks on it.

WS_CJT

Centre the table title. This is the default.

WS_RJT

Right justify the table title.

WS_LJT

Left justify the table title.

WS_NOROWLINES

image0Do not display horizontal lines within the table. This flag may be combined with WS_PLAINLINES to make a plain table without horizontal lines.

WS_PLAINLINES

image1Use plain lines. Use the Table line colour clause to set the line colour.

WS_HLIGHT_DARKEN

Darken selected lines instead of changing them to white on blue. This may improve the appearance of the table if colours have been assigned for the display of table fields.

WS_COLUMN_RESIZE

(Added in Sc6.0.5) Makes the table columns resizeable.

Default: No flags set.

If the table is editable, the cell_properties clause can be used to define a record containing style flags for each column in the table.

EXAMPLE

style = WS_NOROWLINES | WS_DISABLED

RELATED TOPICS

Tables

Style flags