<tableStyles>
(Table Styles)
This element represents a collection of Table style definitions for Table styles and PivotTable styles used in this workbook. It consists of a sequence of <tableStyle>
records, each defining a single Table style.
See the enumeration values in ST_TableStyleType for a listing of structured Table regions to which formatting can be applied, and which together make up a single Table style definition.
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
Attributes |
Description |
---|---|
|
Count of table styles defined in this collection. The possible values for this attribute are defined by the XML Schema unsignedInt datatype. |
|
Name of the default table style to apply to new PivotTables. This can be set by the user interface. The possible values for this attribute are defined by the XML Schema string datatype. |
|
Name of default table style to apply to new Tables. This can be set by the user interface. The possible values for this attribute are defined by the XML Schema string datatype. |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_TableStyles">
<sequence>
<element name="tableStyle" type="CT_TableStyle" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="count" type="xsd:unsignedInt" use="optional"/>
<attribute name="defaultTableStyle" type="xsd:string" use="optional"/>
<attribute name="defaultPivotStyle" type="xsd:string" use="optional"/>
</complexType>