Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxRibbonCaptionAreaSearchToolbarAlignment Enum

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

#Declaration

Delphi
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 v24.2, 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