colspec
colspec — Specifications for a column in a table
Synopsis
Content Model
colspec ::=
EMPTY
Attributes
Name | Type | Default | ||||||
rowsep | CDATA | None | ||||||
align |
| None | ||||||
colwidth | CDATA | None | ||||||
colname | CDATA | None | ||||||
colnum | CDATA | None | ||||||
char | CDATA | None | ||||||
colsep | CDATA | None | ||||||
charoff | CDATA | None |
Description
The attributes of this empty element specify the presentation characteristics of entries in a column of a table.
Each ColSpec
refers to a single column. Columns are numbered sequentially from left to right in the table. If the ColNum
attribute is not specified, the ColSpec
is for the next column after the preceeding ColSpec
or column 1 if it is the first ColSpec
.
Processing expectations
Suppressed. This element is expected to obey the semantics of the CALS Table Model Document Type Definition, as specified by OASIS Technical Memorandum TM 9502:1995 .
Attributes
align
Align
specifies the horizontal alignment ofEntry
s (orEntryTbl
s) in the column. The default alignment is inherited from the enclosingTGroup
. IfChar
is specified, see alsoChar
andCharOff
. IndividualEntry
s andEntryTbl
s can specify an alternate alignment.char
Char
specifies the alignment character when theAlign
attribute is set toChar
.charoff
CharOff
specifies the percentage of the column's total width that should appear to the left of the first occurance of the character identified inChar
when theAlign
attribute is set toChar
. This attribute is inherited from the enclosingTGroup
.colname
ColName
gives a symbolic name to a column. The symbolic name can then be used in subsequentEntry
s andSpanSpec
s to identify the column.colnum
ColNum
gives the number of the column defined by thisColSpec
. If not specified, thisColSpec
describes the next column to the right of the column defined by the previousColSpec
or the first column (column 1) if this is the firstColSpec
.colsep
If
ColSep
has the value 1 (true), then a rule will be drawn to the right of the column described by thisColSpec
. A value of 0 (false) suppresses the rule. The rule to the right of the last column in the table is controlled by theFrame
attribute of the enclosingTable
orInformalTable
and theColSep
of the last column in the table is ignored. If unspecified, this attribute is inherited from enclosing elements. IndividualEntry
s orEntryTbl
s can override theColSpec
setting of this attribute.colwidth
ColWidth
specifies the desired width of the relevant column. It can be either a fixed measure using one of the CALS units (36pt, 10pc, etc.) or a proportional measure. Proportional measures have the form “number*
”, meaning this column should be number times wider than a column with the measure “1*
” (or just “*
”). These two forms can be mixed, as in “3*+1pc
”.rowsep
If
RowSep
has the value 1 (true), then a rule will be drawn below the cells in the specified column. A value of 0 (false) suppresses the rule. The rule below the last row in the table is controlled by theFrame
attribute of the enclosingTable
orInformalTable
and theRowSep
of the last row is ignored. If unspecified, this attribute is inherited from enclosing elements. IndividualEntry
s orEntryTbl
s can override theColSpec
setting of this attribute.
Examples
For examples, see informaltable
, table
.