Document Solutions for Word
DS.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / WrapType Enumeration

In This Topic
    WrapType Enumeration
    In This Topic
    Specifies the wrap type of a shape.
    Syntax
    'Declaration
     
    Public Enum WrapType 
       Inherits System.Enum
    public enum WrapType : System.Enum 
    Members
    MemberDescription
    Inline The shape is inline with the text, and affects the line height and layout of its line (like a character glyph of similar size)
    NoneThe shape does not cause any text wrapping within the document contents based on its display location. In effect, this value places the shape in one of two locations:

    If the WrapFormat.BehindText property is true, then the shape is positioned behind the text as it is normally displayed.

    If the WrapFormat.BehindText property is false, then the shape is positioned in front of the text as it is normally displayed.

    Square Text wraps around a virtual rectangle bounding the shape.
    Through Text wraps around the wrapping polygon bounding the shape and it allows text to wrap within the shape's maximum left and right extents.
    Tight Text wraps around the wrapping polygon bounding the shape and it does not allow text to wrap within the shape's maximum left and right extents.
    TopBottom Text wraps around the top and bottom of the shape, but not around its left or right edges.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.Documents.Word.WrapType

    See Also