<sheetFormatPr>
(Sheet Format Properties)
Sheet formatting properties.
Attributes |
Description |
---|---|
|
Specifies the number of characters of the maximum digit width of the normal style's font. This value does not include margin padding or extra padding for gridlines. It is only the number of characters. See defaultColWidth description in this section for details on calculating this value. See the The possible values for this attribute are defined by the XML Schema unsignedInt datatype. |
|
'True' if The possible values for this attribute are defined by the XML Schema boolean datatype. |
|
Default column width measured as the number of characters of the maximum digit width of the normal style's font. If the user has not set this manually, then it can be calculated:
If the user has set this manually, then there is no calculation, and simply a value is specified. The possible values for this attribute are defined by the XML Schema double datatype. |
|
Default row height measured in point size. Optimization so we don't have to write the height on all rows. This can be written out if most rows have custom height, to achieve the optimization. When the row height of all rows in a sheet is the default value, then that value is written here, and The possible values for this attribute are defined by the XML Schema double datatype. |
|
Highest number of outline levels for columns in this sheet. These values must be in synch with the actual sheet outline levels. The possible values for this attribute are defined by the XML Schema unsignedByte datatype. |
|
Highest number of outline level for rows in this sheet. These values must be in synch with the actual sheet outline levels. The possible values for this attribute are defined by the XML Schema unsignedByte datatype. |
|
'True' if rows have a thick bottom border by default. The possible values for this attribute are defined by the XML Schema boolean datatype. |
|
'True' if rows have a thick top border by default. The possible values for this attribute are defined by the XML Schema boolean datatype. |
|
'True' if rows are hidden by default. This setting is an optimization used when most rows of the sheet are hidden. In this case, instead of writing out every row and specifying hidden, it is much shorter to only write out the rows that are not hidden, and specify here that rows are hidden by default, and only not hidden if specified. 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_SheetFormatPr">
<attribute name="baseColWidth" type="xsd:unsignedInt" use="optional" default="8"/>
<attribute name="defaultColWidth" type="xsd:double" use="optional"/>
<attribute name="defaultRowHeight" type="xsd:double" use="required"/>
<attribute name="customHeight" type="xsd:boolean" use="optional" default="false"/>
<attribute name="zeroHeight" type="xsd:boolean" use="optional" default="false"/>
<attribute name="thickTop" type="xsd:boolean" use="optional" default="false"/>
<attribute name="thickBottom" type="xsd:boolean" use="optional" default="false"/>
<attribute name="outlineLevelRow" type="xsd:unsignedByte" use="optional" default="0"/>
<attribute name="outlineLevelCol" type="xsd:unsignedByte" use="optional" default="0"/>
</complexType>