<ST_WrapText>
(Text Wrapping Location)
This simple type specifies the possible settings for how text may wrap around the object's left and right sides.
<wp:anchor … > … <wp:wrapTight wrapText="left" … /> </wp:anchor>
The @wrapText
attribute value of left
specifies that text shall only wrap around the let side of the object. ]
This simple type's contents are a restriction of the XML Schema token datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Specifies that text shall wrap around both sides of the object. |
|
Specifies that text shall only wrap around the largest side of the object. If the object is positioned in the exact center of the page, the text shall wrap around the side on which text is first encountered:
|
|
Specifies that text shall only wrap around the left side of the object. |
|
Specifies that text shall only wrap around the right side of the object. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_WrapText">
<restriction base="xsd:token">
<enumeration value="bothSides"/>
<enumeration value="left"/>
<enumeration value="right"/>
<enumeration value="largest"/>
</restriction>
</simpleType>