[]
Represents the properties for wrapping text around a shape or shape range.
public class WrapFormat : FormattingBag
Gets or sets whether a floating shape is displayed behind the text of the document when the document is displayed. When a shape is displayed within a document, that shape can intersect with text in the document. This property determines whether the text or the object is rendered on top in case of overlapping.
public bool BehindText { get; set; }
If property Type is not None, this value does not have any effect when displaying the object.
Gets or sets the minimum distance that is maintained between the bottom edge of a shape and any subsequent text within the document when this shape is displayed within the document's contents.
public float DistanceBottom { get; set; }
If property Type is Inline or None, then this value does not have any effect when displaying the object, but can be maintained and used if the object is subsequently changed to floating.
Gets or sets the minimum distance that is maintained between the left edge of the shape and any subsequent text within the document when this shape is displayed within the document's contents.
public float DistanceLeft { get; set; }
If property Type is Inline or None or TopBottom, this value does not have any effect when displaying the object, but can be maintained and used if the object is subsequently changed to floating.
Gets or sets the minimum distance that is maintained between the right edge of the shape and any subsequent text within the document when this shape is displayed within the document's contents.
public float DistanceRight { get; set; }
If property Type is Inline or None or TopBottom, this value does not have any effect when displaying the object, but can be maintained and used if the object is subsequently changed to floating.
Gets or sets the minimum distance that is maintained between the top edge of the shape and any subsequent text within the document when this shape is displayed within the document's contents.
public float DistanceTop { get; set; }
If property Type is Inline or None, this value does not have any effect when displaying the object, but can be maintained and used if the object is subsequently changed to floating.
Gets or sets a value indicating whether the document text wraps on both sides of a shape, on either the left or right side only, or on the side of the shape that is farthest from the page margin.
public WrapSide Side { get; set; }
If property Type is not Inline or None or TopBottom, his value does not have any effect when displaying the object.
Gets or sets the wrap type of a shape.
public WrapType Type { get; set; }
For nested shapes this property value is always Inline.
Gets or sets the wrapping polygon that is used to determine the extents to which text can wrap around the shape in the document.
public List<PointF> WrapPolygon { get; set; }
If property Type is not Through or not Tight, this value does not have any effect when displaying the object.