WrapSide Enum
Lists values that specify what side of a floating object the text is wrapped around.
Declaration
export enum WrapSide {
Both = 0,
Left = 1,
Right = 2,
Largest = 3
}
Members
Name | Description |
---|---|
Both | The text is wrapped on both sides of a floating object. |
Largest | The text is wrapped on the side of a floating object that is furthest from the page margin. |
Left | The text is wrapped on the left side of a floating object. |
Right | The text is wrapped on the right side of a floating object. |
Feedback