Back to Devexpress

WrapSide Enum

aspnetcore-js-devexpress-dot-richedit-023b2be5.md

latest601 B
Original Source

WrapSide Enum

Lists values that specify what side of a floating object the text is wrapped around.

Declaration

ts
export enum WrapSide {
    Both = 0,
    Left = 1,
    Right = 2,
    Largest = 3
}

Members

NameDescription
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.

|