vcl-dxribbon-0617d64c.md
Enumerates available positions of the Caption Area Search Toolbar within the Ribbon form caption.
TdxRibbonCaptionAreaSearchToolbarAlignment = (
Default,
Left,
Right,
Center
);
| 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.
|
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.
In v25.2, only the Office 365 Ribbon UI Style allows you to position a search toolbar within the form caption area.
The TdxRibbonCaptionAreaSearchToolbar.Alignment property references a TdxRibbonCaptionAreaSearchToolbarAlignment type.
See Also