<wrapSquare>
(Square Wrapping)
This element specifies that text shall wrap around a virtual rectangle bounding this object. The bounds of the wrapping rectangle shall be dictated by the extents including the addition of the <effectExtent>
element as a child of this element (if present) or the <effectExtent>
present on the parent element.
<wp:anchor … > … <wp:wrapSquare wrapText="bothSides" /> </wp:anchor>
The <wrapSquare>
element specifies that text shall wrap around both sides of a rectangle around this object which includes its effect extents. ]
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
Attributes |
Description |
---|---|
|
Specifies the minimum distance which shall be maintained between the bottom 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:wrapSquare distB="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 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:wrapSquare 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:wrapSquare distR="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 top 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:wrapSquare distT="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:wrapSquare 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_WrapSquare">
<sequence>
<element name="effectExtent" type="CT_EffectExtent" minOccurs="0"/>
</sequence>
<attribute name="wrapText" type="ST_WrapText" use="required"/>
<attribute name="distT" type="ST_WrapDistance" use="optional"/>
<attribute name="distB" type="ST_WrapDistance" use="optional"/>
<attribute name="distL" type="ST_WrapDistance" use="optional"/>
<attribute name="distR" type="ST_WrapDistance" use="optional"/>
</complexType>