<layoutDefHdr> (Layout Definition Header)

This element is the header information representing the minimum knowledge needed by an application to preload information about a layout definition. This preloading allows for the actual load of the layout definition to occur at a later time which will help with any performance concerns an application may have.

example:
<layoutDefHdr uniqueId="urn:layout/default">
    <title val="Basic Block List" />
    <desc val="" />
    <catLst>
        <cat type="list" pri="1000" />
    </catLst>
</layoutDefHdr>

In this example we define a title along with a category and prioritization for the diagram referenced by the uniqueId of urn:layout:default. ]

Parent Elements

<layoutDefHdrLst>5.9.2.18)

Child Elements

Subclause

<catLst> (Category List)

§5.9.2.5

<desc> (Description)

§5.9.2.11

<extLst> (Extension List)

§5.9.2.13

<title> (Title)

§5.9.2.30

Attributes

Description

<defStyle> (Default Style)

This attribute defines a reference to a default style which is to be applied to the diagram.

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

<minVer> (Minimum Version)

Minimum product version that can support this Diagram Layout.

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

<resId> (Resource Identifier)

Resource ID used internally.

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

<uniqueId> (Unique Identifier)

The unique identifier for this layout 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_DiagramDefinitionHeader">
	<sequence>
	<element name="title" type="CT_Name" minOccurs="1" maxOccurs="unbounded"/>
	<element name="desc" type="CT_Description" minOccurs="1" maxOccurs="unbounded"/>
	<element name="catLst" type="CT_Categories" 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="defStyle" type="xsd:string" use="optional" default=""/>
	<attribute name="resId" type="xsd:int" use="optional" default="0"/>
</complexType>