[Table of Contents] [docx version]

Error! No text of specified style in document.

styleData (Style Data)

This element defines the style data model which is used to pre-populate a diagram with placeholder data in order for the diagram to display itself in the user interface which shows a quick style applied to the diagram.

[Example: Consider the following example of a styleData being used within a DrawingML diagram:

<styleData>

   <dataModel>

      <ptLst>

         <pt modelId="0" type="doc"/>

         <pt modelId="1"/>

         <pt modelId="2"/>

      </ptLst>

      <cxnLst>

         <cxn modelId="3" srcId="0" destId="1" srcOrd="0" destOrd="0"/>

         <cxn modelId="4" srcId="0" destId="2" srcOrd="1" destOrd="0"/>

      </cxnLst>

      <bg/>

      <whole/>

   </dataModel>

</styleData>

In this example we define a data model which has only two nodes which will be shown in the user interface when a layout definition is combined with this data model. end example]

Parent Elements

layoutDef5.9.2.16)

 

Child Elements

Subclause

dataModel (Data Model)

§5.9.2.10

 

Attributes

Description

useDef (Use Default)

If the value of this attribute is true, the data model defined in the clrData element is ignored and a default data model is used instead.

 

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_SampleData">

   <sequence>

   <element name="dataModel" type="CT_DataModel" minOccurs="0"/>

   </sequence>

   <attribute name="useDef" type="xsd:boolean" use="optional" default="false"/>

</complexType>