Back to Devexpress

FloatingObjectHorizontalAlignment Enum

aspnetcore-js-devexpress-dot-richedit-088b82b9.md

latest1.2 KB
Original Source

FloatingObjectHorizontalAlignment Enum

Lists values that specify the horizontal alignment for a floating object.

Declaration

ts
export enum FloatingObjectHorizontalAlignment {
    None = 0,
    Left = 1,
    Center = 2,
    Right = 3,
    Inside = 4,
    Outside = 5
}

Members

NameDescription
Center

A floating object is aligned to the center of a horizontal anchor element.

| | Inside |

A floating object is inside the horizontal anchor element.

| | Left |

A floating object is aligned to the left side of a horizontal anchor element.

| | None |

A floating object is not aligned.

| | Outside |

A floating object is outside the horizontal anchor element.

| | Right |

A floating object is aligned to the right side of a horizontal anchor element.

|