<tableColumn>
(Table Column)
An element representing a single column for this table.
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
Attributes |
Description |
---|---|
|
A string representing the name of the cell style that is applied to the cells in the data area of this table column. If this string is missing or invalid, then the data cell style specified by the current table style should be applied. This cell style should get precedence over the The possible values for this attribute are defined by the ST_Xstring simple type (§3.18.96). |
|
A zero based integer index into the differential formatting records The spreadsheet should fail to load if this index is out of bounds. The possible values for this attribute are defined by the ST_DxfId simple type (§3.18.26). |
|
A string representing the name of the cell style that is applied to the header row cell of this column. If this string is missing or invalid, then header row style specified by the current table style should be applied. This cell style should get precedence over the The possible values for this attribute are defined by the ST_Xstring simple type (§3.18.96). |
|
A zero based integer index into the differential formatting records The possible values for this attribute are defined by the ST_DxfId simple type (§3.18.26). |
|
An integer representing the unique identifier of this column. This shall be unique per table. The possible values for this attribute are defined by the XML Schema unsignedInt datatype. |
|
A string representing the unique caption of the table column. This is what shall be displayed in the header row in the UI, and is referenced through functions. This name shall be unique per table. The possible values for this attribute are defined by the ST_Xstring simple type (§3.18.96). |
|
An integer representing the query table field ID corresponding to this table column. The relationship between this table and the corresponding query table is expressed in _rels part for this table. Each The possible values for this attribute are defined by the XML Schema unsignedInt datatype. |
|
A string representing the name of the cell style that is applied to the Totals Row cell of this column. If this string is missing or invalid, then the totals row cell style specified by the current table style should be applied. This cell style should get precedence over the The possible values for this attribute are defined by the ST_Xstring simple type (§3.18.96). |
|
A zero based integer index into the differential formatting records The spreadsheet shall not load if this index is out of bounds. The possible values for this attribute are defined by the ST_DxfId simple type (§3.18.26). |
|
An enumeration indicating which type of aggregation to show in the totals row cell for this column. The possible values for this attribute are defined by the ST_TotalsRowFunction simple type (§3.18.83). |
|
A String to show in the totals row cell for this column. This string shall be ignored unless the The possible values for this attribute are defined by the ST_Xstring simple type (§3.18.96). |
|
An optional string representing the unique name of the table column. This string is used to bind the column to a field in an data table, so it shall should only be used when this table's This name shall be unique per table when it is used. For tables created from xml mappings, by default this should be the same as the name of the column, and should be kept in synch with the name of the column if that name is altered by the spreadsheet application. The possible values for this attribute are defined by the ST_Xstring simple type (§3.18.96). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_TableColumn">
<sequence>
<element name="calculatedColumnFormula" type="CT_TableFormula" minOccurs="0" maxOccurs="1"/>
<element name="totalsRowFormula" type="CT_TableFormula" minOccurs="0" maxOccurs="1"/>
<element name="xmlColumnPr" type="CT_XmlColumnPr" minOccurs="0" maxOccurs="1"/>
<element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
</sequence>
<attribute name="id" type="xsd:unsignedInt" use="required"/>
<attribute name="uniqueName" type="ST_Xstring" use="optional"/>
<attribute name="name" type="ST_Xstring" use="required"/>
<attribute name="totalsRowFunction" type="ST_TotalsRowFunction" use="optional" default="none"/>
<attribute name="totalsRowLabel" type="ST_Xstring" use="optional"/>
<attribute name="queryTableFieldId" type="xsd:unsignedInt" use="optional"/>
<attribute name="headerRowDxfId" type="ST_DxfId" use="optional"/>
<attribute name="dataDxfId" type="ST_DxfId" use="optional"/>
<attribute name="totalsRowDxfId" type="ST_DxfId" use="optional"/>
<attribute name="headerRowCellStyle" type="ST_Xstring" use="optional"/>
<attribute name="dataCellStyle" type="ST_Xstring" use="optional"/>
<attribute name="totalsRowCellStyle" type="ST_Xstring" use="optional"/>
</complexType>