[Table of Contents] [docx version]
SpreadsheetML Reference Material - Table of Contents
An enumeration that specifies what the table data is based on.
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
queryTable (Query Table) |
A table based on an external data query. |
worksheet (Worksheet) | |
xml (XML) |
A table based on an XML mapping. |
Referenced By |
table@tableType (§3.5.1.2) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_TableType">
<restriction base="xsd:string">
<enumeration value="worksheet"/>
<enumeration value="xml"/>
<enumeration value="queryTable"/>
</restriction>
</simpleType>