Back to Devexpress

FloatingObjectVerticalAnchorElement Enum

aspnetcore-js-devexpress-dot-richedit-1996cbc5.md

latest1.0 KB
Original Source

FloatingObjectVerticalAnchorElement Enum

Lists values that specify an element to which the floating object is aligned.

Declaration

ts
export enum FloatingObjectVerticalAnchorElement {
    Page = 0,
    Line = 1,
    Paragraph = 2,
    Margin = 3,
    TopMargin = 4,
    BottomMargin = 5,
    InsideMargin = 6,
    OutsideMargin = 7
}

Members

NameDescription
BottomMargin

A floating object is aligned to the bottom margin.

| | InsideMargin |

A floating object is aligned to the top margin for odd pages, and the bottom margin for even pages.

| | Line |

A floating object is aligned to a line.

| | Margin |

A floating object is aligned to page margins.

| | OutsideMargin |

A floating object is aligned to the bottom margin for odd pages, and the top margin for even pages.

| | Page |

A floating object is aligned to a page.

| | Paragraph |

A floating object is aligned to a paragraph.

| | TopMargin |

A floating object is aligned to the top margin.

|