[Table of Contents] [docx version]

Error! No text of specified style in document.

colorsDefHdr (Color Transform Definition Header)

This element specifies header information associated with a color transform 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 colorsDefHdr within DiagramML:

<colorsDefHdr uniqueId="urn:colors/accent0_1">

<title val="Main 1" />

<desc val="" />

<catLst>

<cat type="mainScheme" pri="10100" />

</catLst>

</colorsDefHdr>

In this example we see a color transform definition header which defines a title and category for a set of color transforms. end example]

Parent Elements

colorsDefHdrLst5.9.4.5)

 

Child Elements

Subclause

catLst (Color Transform Category List)

§5.9.4.2

desc (Description)

§5.9.4.6

extLst (Extension List)

§5.9.2.13

title (Title)

§5.9.4.11

 

Attributes

Description

minVer (Minimum Version)

The minimum product version that can support the associated color transform definition.

 

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 color transform definition.

 

The possible values for this attribute are defined by the XML Schema int datatype.

uniqueId (Unique ID)

This attribute defines a unique identifier for the associated color transform 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_ColorTransformHeader">

   <sequence>

   <element name="title" type="CT_CTName" minOccurs="1" maxOccurs="unbounded"/>

   <element name="desc" type="CT_CTDescription" minOccurs="1" maxOccurs="unbounded"/>

   <element name="catLst" type="CT_CTCategories" 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>