[Table of Contents] [docx version]

VML Reference Material - VML

ST_WrapType (Text Wrapping Type)

This simple type specifies the type of text wrapping which shall be allowed around a VML object within a document.

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

none (No wrapping)

Specifies that text shall not be allowed to wrap around the remaining space on each lines around this VML object.

square (Square wrapping)

Specifies that text shall be allowed to wrap around the remaining space on each line around this text frame in the document using a rectangle touching each of the object's furthest edges.

through (Through wrapping)

Specifies that text shall be allowed to wrap around the remaining space on each line around this text frame in the document, including any holes in the object.

tight (Tight wrapping)

Specifies that text shall be allowed to tightly wrap around the remaining space on each line around this text frame in the document.

topAndBottom (Top and bottom wrapping)

Specifies that text shall not be allowed to wrap around the remaining space on each lines around the VML object.

 

Any text content shall therefore be placed on the next line following the object which does not intersect with the object's extents.

 

Referenced By

wrap@type6.3.2.6)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_WrapType">

   <restriction base="xsd:string">

   <enumeration value="topAndBottom"/>

   <enumeration value="square"/>

   <enumeration value="none"/>

   <enumeration value="tight"/>

   <enumeration value="through"/>

   </restriction>

</simpleType>