Word.Interfaces.ShapeTextWrapUpdateData interface
An interface for updating data on the ShapeTextWrap
object, for use in shapeTextWrap.set({ ... })
.
Properties
bottom |
Specifies the distance (in points) between the document text and the bottom edge of the text-free area surrounding the specified shape. |
left |
Specifies the distance (in points) between the document text and the left edge of the text-free area surrounding the specified shape. |
right |
Specifies the distance (in points) between the document text and the right edge of the text-free area surrounding the specified shape. |
side | Specifies whether the document text should wrap on both sides of the specified shape, on either the left or right side only, or on the side of the shape that's farthest from the page margin. |
top |
Specifies the distance (in points) between the document text and the top edge of the text-free area surrounding the specified shape. |
type | Specifies the text wrap type around the shape. See |
Property Details
bottomDistance
Specifies the distance (in points) between the document text and the bottom edge of the text-free area surrounding the specified shape.
bottomDistance?: number;
Property Value
number
Remarks
leftDistance
Specifies the distance (in points) between the document text and the left edge of the text-free area surrounding the specified shape.
leftDistance?: number;
Property Value
number
Remarks
rightDistance
Specifies the distance (in points) between the document text and the right edge of the text-free area surrounding the specified shape.
rightDistance?: number;
Property Value
number
Remarks
side
Specifies whether the document text should wrap on both sides of the specified shape, on either the left or right side only, or on the side of the shape that's farthest from the page margin.
side?: Word.ShapeTextWrapSide | "None" | "Both" | "Left" | "Right" | "Largest";
Property Value
Word.ShapeTextWrapSide | "None" | "Both" | "Left" | "Right" | "Largest"
Remarks
topDistance
Specifies the distance (in points) between the document text and the top edge of the text-free area surrounding the specified shape.
topDistance?: number;
Property Value
number
Remarks
type
Specifies the text wrap type around the shape. See Word.ShapeTextWrapType
for details.
type?: Word.ShapeTextWrapType | "Inline" | "Square" | "Tight" | "Through" | "TopBottom" | "Behind" | "Front";
Property Value
Word.ShapeTextWrapType | "Inline" | "Square" | "Tight" | "Through" | "TopBottom" | "Behind" | "Front"
Remarks
Office Add-ins