frame Frame (OASIS Table Model)

Specifies which sides of the table should be given rules, making a box or frame of lines around the table

Usage/Remarks

The official OASIS Exchange (CALS) Table Model documentation can be found at http://www.oasis-open.org/specs/a502.htm
OPTIONAL on element: <oasis:table>
Value Meaning
all All sides of the table should be “framed”.
bottom A rule at the bottom of the table
none No rules
sides Rules on the sides of the table
top A rule at the top of the table
topbot Rules at the top and bottom of the table
Restriction Typically taken from style specification, but if none available assume “all”.
Tagged Sample

Frame on all sides

...
<oasis:table frame="all">
<oasis:tgroup cols="7">
<oasis:colspec colnum="1" colname="col1" align="center" colsep="1"/>
<oasis:colspec colnum="2" colname="col2" align="center" colsep="1"/>
<oasis:colspec colnum="3" colname="col3" align="center" colsep="1"/>
<oasis:colspec colnum="4" colname="col4" align="center" colsep="1"/>
<oasis:colspec colnum="5" colname="col5" align="center" colsep="1" colwidth="2"/>
<oasis:colspec colnum="6" colname="col6" align="center" colsep="1"/>
<oasis:colspec colnum="7" colname="col7" align="char" charoff="30" char="."/>
<oasis:thead valign="middle">...</oasis:thead>
<oasis:tbody valign="middle">...</oasis:tbody>
</oasis:tgroup>
</oasis:table>
...