<br>
(Break)
The behavior of this break character (the location where text shall be restarted after this break) shall be determined by its @type
and @clear
attribute values, described below.
This is a simple sentence.
Normally, just as shown above, this sentence would be displayed on a single line as it is not long enough to require line breaking (given the width of the current page). However, if a text wrapping break character (a typical line break) were inserted after the word is
, as follows:
<w:r> <w:t>This is</w:t> <w:br/> <w:t xml:space="preserve"> a simple sentence.</w:t> </w:r>
This would imply that this break shall be treated as a simple line break, and break the line after that word:
This is a simple sentence.
The break character forced the following text to be restarted on the next available line in the document. ]
Attributes |
Description |
---|---|
|
Specifies the location which shall be used as the next available line when the break’s If this break is not of type This line break is of type <w:br w:type="textWrapping" w:clear="all" /> This break shall therefore not use the next available line, but rather the next available line ignoring all lines which do not span the full text width. ] The possible values for this attribute are defined by the ST_BrClear simple type (§2.18.5). |
|
Specifies the type of the current break. The break type determines the next location where text shall be placed after this manual break is applied to the text contents (see possible values for details). If this attribute is omitted, then it shall be assumed to be of type <w:br w:type=”column”/> The The possible values for this attribute are defined by the ST_BrType simple type (§2.18.6). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_Br">
<attribute name="type" type="ST_BrType" use="optional"/>
<attribute name="clear" type="ST_BrClear" use="optional"/>
</complexType>