Skip to main content

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

TcxEditButtonsViewStyle Enum

Represents the view style of buttons in an edit control.

#Declaration

Delphi
TcxEditButtonsViewStyle = (
    bvsNormal,
    bvsButtonsOnly,
    bvsButtonsAutoWidth
);

#Members

Name
bvsNormal
bvsButtonsOnly
bvsButtonsAutoWidth

#Remarks

The TcxEditButtonsViewStyle type enumerates button view styles which are set via the TcxCustomEditProperties.ButtonsViewStyle property.

Value

Meaning

bvsNormal

The edit control displays the editor text and buttons (if any).

bvsButtonsOnly

The edit control displays buttons only (if any).

bvsButtonsAutoWidth

The edit control displays buttons only (if any). The width of the edit control is adjusted according to the buttons’ widths.

The width of a particular button is controlled by its Width and Stretchable properties.

See Also