[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

ST_CombineBrackets (Two Lines in One Enclosing Character Type)

This simple type specifies the type of bracket character which shall be used to enclose the two lines in one text within the current run when displayed

[Example: Consider a paragraph with the text two lines in one, which shall be displayed within a single logical line in the document and enclosed in curly brackets. This constraint would be specified as follows in the WordprocessingML:

<w:r>

<w:rPr>

<w:eastAsianLayout w:id="1" w:combine="on" w:combineBrackets="curly"/>

</w:rPr>

<w:t>two lines in one</w:t>

</w:r>

The resulting text would be displayed on two sub lines within the other text on this line and enclosed within curly brackets when displayed. end example]

This simple type's contents are a restriction of the XML Schema string datatype.

The following are possible enumeration values for this type:

Enumeration Value

Description

angle (Angle Brackets)

Specifies that angle bracket characters shall be used to enclose the contents of the current run’s two lines in one text.

 

[Example: <…> end example]

curly (Curly Brackets)

Specifies that curly bracket characters shall be used to enclose the contents of the current run’s two lines in one text.

 

[Example: {…} end example]

none (No Enclosing Brackets)

Specifies that no characters shall be used to enclose the contents of the current run’s two lines in one text.

round (Round Brackets)

Specifies that round bracket characters shall be used to enclose the contents of the current run’s two lines in one text.

 

[Example: (…) end example]

square (Square Brackets)

Specifies that square bracket characters shall be used to enclose the contents of the current run’s two lines in one text.

 

[Example: […] end example]

 

Referenced By

eastAsianLayout@combineBrackets2.3.2.8)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_CombineBrackets">

   <restriction base="xsd:string">

   <enumeration value="none"/>

   <enumeration value="round"/>

   <enumeration value="square"/>

   <enumeration value="angle"/>

   <enumeration value="curly"/>

   </restriction>

</simpleType>