ipfc.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
table.
                                                      Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
 :table cols='val val ...  [rule = Both | Horiz | Vert | None]
 
The :table tag creates a table.
 
Parameter  Description
────────────────────────────────────────────────────────────────────────────
 
cols       Specifies the width of each column.
 
rule       Specifies whether the table will have horizontal and vertical
           lines (rules). This parameter may be set to one of the following
           values:
 
           Value  Meaning
           ─────────────────────────────────────────────────────────────────
           Both   Define horizontal and vertical rules
           Horiz  Define only horizontal rules
           Vert   Define only vertical rules
           None   Do not define any rules
 
Example
 
This example defines a table with three columns and two rows.
 
    :table cols='10 15 20'.
    :row.
    :c.This is row 1 column 1
    :c.This is row 1 column 2
    :c.This is row 1 column 3
    :row.
    :c.This is row 2 column 1
    :c.This is row 2 column 2
    :c.This is row 2 column 3
    :etable.
 
See Also
 
 :etable
 
                                      ♦