<ST_String>
(String)
This simple type specifies that its contents will contain a string. The contents of this string are interpreted based on the context of the parent XML element.
<w:pPr> <w:pStyle w:val="heading1" /> </w:pPr>
The value of the @val
attribute is the ID of the associated paragraph style's styleId
. However, consider the following fragment:
<w:sdtPr> <w:alias w:val="SDT Title Example" /> ... </w:sdtPr>
In this case, the decimal number in the @val
attribute is the caption of the parent structured document tag. In each case, the value is of type <ST_String>
, and therefore must be interpreted in the context of the parent element. ]
This simple type's contents are a restriction of the XML Schema string datatype.
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_String">
<restriction base="xsd:string"/>
</simpleType>