<datastoreItem>
(Custom XML Data Properties)
This element specifies the properties for a single custom XML part inside of an Office Open XML document. The set of properties specified within this element are attached to the custom XML part that specifies a relationship to this part.
<w:datastoreItem w:itemID="{A67AC88A-A164-4ADE-8889-8826CE44DE6E}"> <w:schemaRefs> <w:schemaRef w:uri="http://www.contoso.com/exampleSchema" /> </w:schemaRefs> </w:datastoreItem>
The <datastoreItem>
element contains the properties for the custom XML part that referenced it; specifically, a part ID of A67AC88A-A164-4ADE-8889-8826CE44DE6E
, and a single XML Schema reference to a schema with a target namespace of http://www.contoso.com/exampleSchema
. ]
Parent Elements |
---|
Root element of Shared Custom XML Data Storage Properties part |
Child Elements |
Subclause |
---|---|
|
Attributes |
Description |
---|---|
|
Specifies a globally unique identifier (GUID) that uniquely identifies a single custom XML part within an Office Open XML document. Each <w:datastoreItem w:itemID="{A67AC88A-A164-4ADE-8889- 8826CE44DE6E}"> … </w:datastoreItem> The The possible values for this attribute are defined by the ST_Guid simple type (§7.5.3.1). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_DatastoreItem">
<sequence>
<element name="schemaRefs" type="CT_DatastoreSchemaRefs" minOccurs="0"/>
</sequence>
<attribute name="itemID" type="ST_Guid" use="required"/>
</complexType>