<sdt> (Row-Level Structured Document Tag)

This element specifies the presence of a structured document tag around a single table row. The two child elements of this element shall be used to specify the properties and content of the current structured document tag via the <sdtPr> and <sdtContent> elements, respectively.

example:
<w:tbl>
  <w:sdt>
    <w:sdtPr>
      <w:alias w:val="invoiceItem"/>
    </w:sdtPr>
    <w:sdtContent>
      <w:tr></w:tr>
    </w:sdtContent>
  </w:sdt></w:tbl>

The <sdt> element specifies the structured document tag, the child <sdtPr> element contains the friendly name property set to invoiceItem, and the <sdtContent> element contains a single table row (it is a row-level structured document tag). ]

Parent Elements

<customXml>2.5.1.4); <sdtContent>2.5.2.34); <tbl>2.4.36)

Child Elements

Subclause

<sdtContent> (Row-Level Structured Document Tag Content)

§2.5.2.34

<sdtEndPr> (Structured Document Tag End Character Properties)

§2.5.2.36

<sdtPr> (Structured Document Tag Properties)

§2.5.2.37

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_SdtRow">
	<sequence>
	<element name="sdtPr" type="CT_SdtPr" minOccurs="0" maxOccurs="1"/>
	<element name="sdtEndPr" type="CT_SdtEndPr" minOccurs="0" maxOccurs="1"/>
	<element name="sdtContent" type="CT_SdtContentRow" minOccurs="0" maxOccurs="1"/>
	</sequence>
</complexType>