<sheetPr>
(Sheet Properties)
Sheet-level properties.
Child Elements |
Subclause |
---|---|
|
|
|
|
|
Attributes |
Description |
---|---|
|
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. |
|
Flag indicating whether the conditional formatting calculations shall be evaluated. If set to This is useful when conditional formats are being set programmatically at runtime, recalculation of the conditional formatting does not need to be done until the program execution has finished setting all the conditional formatting properties. The possible values for this attribute are defined by the XML Schema boolean datatype. |
|
Flag indicating whether the worksheet has one or more autofilters or advanced filters on. The possible values for this attribute are defined by the XML Schema boolean datatype. |
|
Flag indicating whether the worksheet is published. The possible values for this attribute are defined by the XML Schema boolean datatype. |
|
Flag indicating whether this worksheet is horizontally synced to the The possible values for this attribute are defined by the XML Schema boolean datatype. |
|
Anchor point for worksheet's window. The possible values for this attribute are defined by the ST_Ref simple type (§3.18.64). |
|
Flag indicating whether this worksheet is vertically synced to the The possible values for this attribute are defined by the XML Schema boolean datatype. |
|
Flag indicating whether the Transition Formula Entry (Lotus compatibility) option is enabled. The possible values for this attribute are defined by the XML Schema boolean datatype. |
|
Flag indicating whether the Transition Formula Evaluation (Lotus compatibility) option is enabled. 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_SheetPr">
<sequence>
<element name="tabColor" type="CT_Color" minOccurs="0" maxOccurs="1"/>
<element name="outlinePr" type="CT_OutlinePr" minOccurs="0" maxOccurs="1"/>
<element name="pageSetUpPr" type="CT_PageSetUpPr" minOccurs="0" maxOccurs="1"/>
</sequence>
<attribute name="syncHorizontal" type="xsd:boolean" use="optional" default="false"/>
<attribute name="syncVertical" type="xsd:boolean" use="optional" default="false"/>
<attribute name="syncRef" type="ST_Ref" use="optional"/>
<attribute name="transitionEvaluation" type="xsd:boolean" use="optional" default="false"/>
<attribute name="transitionEntry" type="xsd:boolean" use="optional" default="false"/>
<attribute name="published" type="xsd:boolean" use="optional" default="true"/>
<attribute name="codeName" type="xsd:string" use="optional"/>
<attribute name="filterMode" type="xsd:boolean" use="optional" default="false"/>
<attribute name="enableFormatConditionsCalculation" type="xsd:boolean" use="optional" default="true"/>
</complexType>