Skip to main content
All docs
V25.1
  • TdxRibbonCaptionAreaSearchToolbarAlignment Enum

    Enumerates available positions of the Caption Area Search Toolbar within the Ribbon form caption.

    Declaration

    TdxRibbonCaptionAreaSearchToolbarAlignment = (
        Default,
        Left,
        Right,
        Center
    );

    Members

    Name Description
    Default

    Default. The default search toolbar position within the form caption area.

    Left

    The search toolbar is aligned to the left form border.

    Right

    The search toolbar is aligned to the right form border.

    Center

    The search toolbar is centered within the form caption area.

    Remarks

    You can position the Caption Area Search Toolbar within the parent Ribbon form’s caption.

    Note

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

    Supported Ribbon Styles

    In v25.1, only the Office 365 Ribbon UI Style allows you to position a search toolbar within the form caption area.

    Direct TdxRibbonCaptionAreaSearchToolbarAlignment Type Reference

    The TdxRibbonCaptionAreaSearchToolbar.Alignment property references a TdxRibbonCaptionAreaSearchToolbarAlignment type.

    See Also