[Table of Contents] [docx version]
Error! No text of specified style in document.
styleDefHdr (Style Definition Header)
This element specifies header information associated with a style definition. The header information is used by an application to preprocess required data in order to help with possible performance concerns associated with an initial full load of a color transform definition.
[Example: Consider the following example of a styleDefHdr element within DiagramML:
<styleDefHdr uniqueId="urn:quicktyle/3d1">
<catLst>
</catLst>
</ styleDefHdr >
In this example we see a style definition header which defines a title and category for a set of style definitions. end example]
Parent Elements |
styleDefHdrLst (§5.9.5.9) |
Child Elements |
Subclause |
catLst (Category List) |
§5.9.5.2 |
desc (Style Label Description) |
§5.9.5.3 |
extLst (Extension List) |
§5.9.2.13 |
title (Title) |
§5.9.5.11 |
Attributes |
Description |
minVer (Minimum Version) |
The minimum product version that can support this quick style.
The possible values for this attribute are defined by the XML Schema string datatype. |
resId (Resource ID) |
This attribute is the id which associates this header to the actual style definition part.
The possible values for this attribute are defined by the XML Schema int datatype. |
uniqueId (Unique Style ID) |
This attribute defines a unique identifier for the associated style definition.
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_StyleDefinitionHeader">
<sequence>
<element name="title" type="CT_SDName" minOccurs="1" maxOccurs="unbounded"/>
<element name="desc" type="CT_SDDescription" minOccurs="1" maxOccurs="unbounded"/>
<element name="catLst" type="CT_SDCategories" minOccurs="0"/>
<element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
</sequence>
<attribute name="uniqueId" type="xsd:string" use="required"/>
<attribute name="minVer" type="xsd:string" use="optional" default="http://schemas.openxmlformats.org/drawingml/2006/diagram"/>
<attribute name="resId" type="xsd:int" use="optional" default="0"/>
</complexType>