[Table of Contents] [docx version]
WordprocessingML Reference Material - Table of Contents
customXmlPr (Custom XML Element Properties)
This element specifies the set of properties which shall be applied to the parent custom XML element.
[Example: Consider a custom XML element with the following properties specified:
<w:customXmlPr>
<w:placeholder w:val="[Fill in your name]"/>
<w:attr w:name="status" w:val="draft"/>
</w:customXmlPr>
This custom XML element specifies two properties: the presence of placeholder text via the placeholder element (§2.5.1.8) and a single custom XML attribute via the attr element (§2.5.1.1). end example]
Parent Elements |
customXml (§2.5.1.3); customXml (§2.5.1.6); customXml (§2.5.1.5); customXml (§2.5.1.4) |
Child Elements |
Subclause |
§2.5.1.1 | |
placeholder (Custom XML Element Placeholder Text) |
§2.5.1.8 |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_CustomXmlPr">
<sequence>
<element name="placeholder" type="CT_String" minOccurs="0"/>
<element name="attr" type="CT_Attr" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>