[Table of Contents] [docx version]
SpreadsheetML Reference Material - Table of Contents
sheetPr (Chart Sheet Properties)
This element specifies chart sheet properties.
Parent Elements |
chartsheet (§3.3.1.11) |
Child Elements |
Subclause |
tabColor (Sheet Tab Color) |
§3.3.1.90 |
Attributes |
Description |
codeName (Code Name) |
Specifies a stable name of the sheet, which should not change over time, and does not change from user input. This name should be used by code to reference a particular sheet.
The possible values for this attribute are defined by the XML Schema string datatype. |
published (Published) |
Flag indicating whether the chart sheet is published.
The possible values for this attribute are defined by the XML Schema boolean datatype. |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_ChartsheetPr">
<sequence>
<element name="tabColor" type="CT_Color" minOccurs="0" maxOccurs="1"/>
</sequence>
<attribute name="published" type="xsd:boolean" use="optional" default="true"/>
<attribute name="codeName" type="xsd:string" use="optional"/>
</complexType>