<wrapThrough>
(Through Wrapping)
This element specifies that text shall wrap around the wrapping polygon bounding this object as defined by the child <wrapPolygon>
element. When this element specifies a wrapping polygon, it shall allow text to wrap within the object's maximum left and right extents.
If this object uses tight wrapping, then text cannot be placed within the maximum left and right extents of the wrap polygon at any location:
However, with through wrapping:
<wp:anchor … > … <wp:wrapThrough wrapText="bothSides"> … </wp:wrapThrough> </wp:anchor>
The <wrapThrough>
element specifies that text shall wrap through this object as defined by its wrap polygon. ]
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
Attributes |
Description |
---|---|
|
Specifies the minimum distance which shall be maintained between the left edge of this drawing object and any subsequent text within the document when this graphical object is displayed within the document's contents. The distance shall be measured in EMUs (English Metric Units). <wp:anchor … > … <wp:wrapThrough distL="457200" … /> </wp:anchor> The The possible values for this attribute are defined by the ST_WrapDistance simple type (§5.5.3.6). |
|
Specifies the minimum distance which shall be maintained between the right edge of this drawing object and any subsequent text within the document when this graphical object is displayed within the document's contents. The distance shall be measured in EMUs (English Metric Units). <wp:anchor … > … <wp:wrapThrough distR="457200" … /> </wp:anchor> The The possible values for this attribute are defined by the ST_WrapDistance simple type (§5.5.3.6). |
|
Specifies how text shall wrap around the object's left and right sides. <wp:anchor … > … <wp:wrapThrough wrapText="left" … /> </wp:anchor> The The possible values for this attribute are defined by the ST_WrapText simple type (§5.5.3.7). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_WrapThrough">
<sequence>
<element name="wrapPolygon" type="CT_WrapPath" minOccurs="1" maxOccurs="1"/>
</sequence>
<attribute name="wrapText" type="ST_WrapText" use="required"/>
<attribute name="distL" type="ST_WrapDistance" use="optional"/>
<attribute name="distR" type="ST_WrapDistance" use="optional"/>
</complexType>