<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.
<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 |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
Attributes |
Description |
---|---|
|
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. |
|
Minimum product version that can support this Diagram Layout. The possible values for this attribute are defined by the XML Schema string datatype. |
|
Resource ID used internally. The possible values for this attribute are defined by the XML Schema int datatype. |
|
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>