◇◆
rowsep Row Separator (OASIS Table Model)
Indicates whether a rule be placed below a row
Usage/Remarks
The official OASIS Exchange (CALS) Table Model documentation can be found at http://www.oasis-open.org/specs/a502.htm
OPTIONAL on many elements; click for list and usage
Value | Meaning | Behavior |
---|---|---|
0 or 1 (Any value other than 0 is equivalent to 1.) | This value is the resolution of the %yesorno; Parameter Entity. Preferred values are “0” and “1”. | A processing system should interpret this attribute value as “no row separator” when the value is “0”, and “use row separator” when the value is “1” (or any other value). |
Restriction | Inherited from the closest of the following to provide the value: <oasis:row>, <oasis:colspec>, <oasis:tgroup>, <oasis:table>. |
Tagged Sample
Horizontal rules separating segments of a table header
... <oasis:thead valign="middle"> <oasis:row> <oasis:entry morerows="1"></oasis:entry> <oasis:entry namest="col2" nameend="col4" align="center" morerows="1">Institutional care</oasis:entry> <oasis:entry morerows="1"></oasis:entry> <oasis:entry namest="col6" nameend="col7" align="center" morerows="1"> Bed use (days)</oasis:entry> </oasis:row> <oasis:row> <oasis:entry namest="col2" nameend="col4" rowsep="1"></oasis:entry> <oasis:entry namest="col6" nameend="col7" rowsep="1"></oasis:entry> </oasis:row> <oasis:row> <oasis:entry>Control group</oasis:entry> <oasis:entry align="center">Day hospital</oasis:entry> <oasis:entry align="center">Control</oasis:entry> <oasis:entry align="center">Odds ratio (95% CI)</oasis:entry> <oasis:entry></oasis:entry> <oasis:entry align="center">Day hospital</oasis:entry> <oasis:entry align="center">Control</oasis:entry> </oasis:row> </oasis:thead> ...