3.1.3.1.6 sdt (Ruby Inline-Level Structured Document Tag)

This element specifies the presence of a structured document tag around one or more inline-level structures (runs, DrawingML objects, fields, and so on) in the current paragraph. 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: Consider a structured document tag with the friendly name firstName that shall be located around two runs in a WordprocessingML document. This requirement would be specified as follows in the WordprocessingML:

 <w:p>
   <w:sdt>
     <w:sdtPr>
       <w:alias w:val="firstName"/>
     </w:sdtPr>
     <w:sdtContent>
       <w:r>
         …
       </w:r>
       <w:r>
         …
       </w:r>
     </w:sdtContent>
   </w:sdt>
   …
 </w:tr>

The sdt element specifies the structured document tag, the child sdtPr element contains the friendly name property set to firstName, and the sdtContent element contains two runs (it is an inline-level structured document tag). end example]

Parent Elements

customXml3.1.3.1.1, customXml); fldSimple3.1.3.1.2, fldSimple); hyperlink3.1.3.1.3, hyperlink); rt ("[ISO/IEC-29500-1] §17.3.3.24"); rubyBase ("[ISO/IEC-29500-1] §17.3.3.27"); sdtContent3.1.3.1.7, sdtContent)

Child Elements

Subclause

bookmarkEnd (Bookmark End)

"[ISO/IEC-29500-1] §17.13.6.1"

bookmarkStart (Bookmark Start)

"[ISO/IEC-29500-1] §17.13.6.2"

commentRangeEnd (Comment Anchor Range End)

"[ISO/IEC-29500-1] §17.13.4.3"

commentRangeStart (Comment Anchor Range Start)

"[ISO/IEC-29500-1] §17.13.4.4"

customXmlDelRangeEnd (Custom XML Markup Deletion End)

"[ISO/IEC-29500-1] §17.13.5.4"

customXmlDelRangeStart (Custom XML Markup Deletion Start)

"[ISO/IEC-29500-1] §17.13.5.5"

customXmlInsRangeEnd (Custom XML Markup Insertion End)

"[ISO/IEC-29500-1] §17.13.5.6"

customXmlInsRangeStart (Custom XML Markup Insertion Start)

"[ISO/IEC-29500-1] §17.13.5.7"

customXmlMoveFromRangeEnd (Custom XML Markup Move Source End)

"[ISO/IEC-29500-1] §17.13.5.8"

customXmlMoveFromRangeStart (Custom XML Markup Move Source Start)

"[ISO/IEC-29500-1] §17.13.5.9"

customXmlMoveToRangeEnd (Custom XML Markup Move Destination Location End)

"[ISO/IEC-29500-1] §17.13.5.10"

customXmlMoveToRangeStart (Custom XML Markup Move Destination Location Start)

"[ISO/IEC-29500-1] §17.13.5.11"

moveFromRangeEnd (Move Source Location Container - End)

"[ISO/IEC-29500-1] §17.13.5.23"

moveFromRangeStart (Move Source Location Container - Start)

"[ISO/IEC-29500-1] §17.13.5.24"

moveToRangeEnd (Move Destination Location Container - End)

"[ISO/IEC-29500-1] §17.13.5.27"

moveToRangeStart (Move Destination Location Container - Start)

"[ISO/IEC-29500-1] §17.13.5.28"

sdtContent (Ruby Inline-Level Structured Document Tag Content)

§3.1.3.1.7, sdtContent

sdtEndPr (Structured Document Tag End Character Properties)

"[ISO/IEC-29500-1] §17.5.2.37"

sdtPr (Structured Document Tag Properties)

"[ISO/IEC-29500-1] §17.5.2.38"

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

 <complexType name="CT_SdtRunRuby">
   <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_SdtContentRunRuby" minOccurs="0" maxOccurs="1"/>
     <group ref="EG_RangeMarkupElements" minOccurs="0" maxOccurs="unbounded"/>
   </sequence>
 </complexType>