Back to Devexpress

TdxRichEditShapeRelativeHorizontalPosition Enum

vcl-dxrichedit-dot-nativeapi-6278a31a.md

latest2.3 KB
Original Source

TdxRichEditShapeRelativeHorizontalPosition Enum

Enumerates base horizontal document positions for a floating picture or text box.

Declaration

delphi
TdxRichEditShapeRelativeHorizontalPosition = (
    Page,
    Character,
    Column,
    Margin,
    LeftMargin,
    RightMargin,
    InsideMargin,
    OutsideMargin
);

Members

Name
Page
Character
Column
Margin
LeftMargin
RightMargin
InsideMargin
OutsideMargin

Remarks

Options include:

ValueDescription
PageA floating object is positioned relative to a document page.
CharacterA floating object is positioned relative to a character.
ColumnA floating object is positioned relative to a column.
MarginA floating object is positioned relative to a margin.
LeftMarginA floating object is positioned relative to the left margin.
RightMarginA floating object is positioned relative to the right margin.
InsideMarginThe reserved value – do not use it.
OutsideMarginThe reserved value – do not use it.

The IdxRichEditShape interface’s RelativeHorizontalPosition property references the TdxRichEditShapeRelativeHorizontalPosition type.

Note

TdxRichEditShapeRelativeHorizontalPosition is a scoped enumeration type. Use the type name together with a scope resolution token (. in Delphi or :: in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxRichEditShapeRelativeHorizontalPosition.RightMargin (in Delphi) or TdxRichEditShapeRelativeHorizontalPosition::RightMargin (in C++Builder) to refer to the RightMargin value in code.

See Also

TdxRichEditShapeHorizontalAlignment

TdxRichEditShapeVerticalAlignment

TdxRichEditShapeRelativeVerticalPosition

dxRichEdit.NativeApi Unit