Back to Devexpress

TdxRichEditShapeRelativeVerticalPosition Enum

vcl-dxrichedit-dot-nativeapi-44131d23.md

latest2.2 KB
Original Source

TdxRichEditShapeRelativeVerticalPosition Enum

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

Declaration

delphi
TdxRichEditShapeRelativeVerticalPosition = (
    Page,
    Line,
    Paragraph,
    Margin,
    TopMargin,
    BottomMargin,
    InsideMargin,
    OutsideMargin
);

Members

Name
Page
Line
Paragraph
Margin
TopMargin
BottomMargin
InsideMargin
OutsideMargin

Remarks

Options include:

ValueDescription
PageThe reserved value – do not use it.
LineA floating object is positioned relative to a text line.
ParagraphThe reserved value – do not use it.
MarginA floating object is positioned relative to a margin.
TopMarginA floating object is positioned relative to the top margin.
BottomMarginA floating object is positioned relative to the bottom margin.
InsideMarginThe reserved value – do not use it.
OutsideMarginThe reserved value – do not use it.

The IdxRichEditShape interface’s RelativeVerticalPosition property references the TdxRichEditShapeRelativeVerticalPosition type.

Note

TdxRichEditShapeRelativeVerticalPosition 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 TdxRichEditShapeRelativeVerticalPosition.Line (in Delphi) or TdxRichEditShapeRelativeVerticalPosition::Line (in C++Builder) to refer to the Line value in code.

See Also

TdxRichEditShapeHorizontalAlignment

TdxRichEditShapeRelativeHorizontalPosition

TdxRichEditShapeVerticalAlignment

dxRichEdit.NativeApi Unit