<ST_TextboxTightWrap>
(Lines To Tight Wrap Within Text Box)
This simple type specifies the lines in the parent paragraph which shall allow the text to be tight wrapped to the paragraph (and not the containing text box) extents when displaying the document.
<w:pPr> <w:textboxTightWrap w:val="firstLineOnly" /> </w:pPr>
The resulting paragraph would allow text to tightly wrap to the contents of its first line only. All other lines would wrap to the text box's extents. ]
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 |
---|---|
|
Specifies that all lines in the paragraph shall allow surrounding text to be tight wrapped to their extents and not the containing text box’s extents. |
|
Specifies that only the first and last lines in the paragraph shall allow surrounding text to be tight wrapped to their extents and not the containing text box’s extents. |
|
Specifies that only the first line in the paragraph shall allow surrounding text to be tight wrapped to their extents and not the containing text box’s extents. |
|
Specifies that only the last line in the paragraph shall allow surrounding text to be tight wrapped to their extents and not the containing text box’s extents. |
|
Specifies that no lines in the paragraph shall allow surrounding text to be tight wrapped to their extents and not the containing text box’s extents. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_TextboxTightWrap">
<restriction base="xsd:string">
<enumeration value="none"/>
<enumeration value="allLines"/>
<enumeration value="firstAndLastLine"/>
<enumeration value="firstLineOnly"/>
<enumeration value="lastLineOnly"/>
</restriction>
</simpleType>