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

TcxGridQuickCustomizationReordering Enum

Enumerates options that control the end-user ability to reorder columns and bands by dragging their names in the Quick Column Customization dropdown and Quick Band Customization dropdown.

#Declaration

Delphi
TcxGridQuickCustomizationReordering = (
    qcrDefault,
    qcrEnabled,
    qcrDisabled
);

#Members

Name
qcrDefault
qcrEnabled
qcrDisabled

#Remarks

Options include:

Value Description
qcrDefault End users can drag columns/bands in the corresponding dropdown provided that the View’s OptionsCustomize.ColumnMoving or OptionsCustomize.BandMoving property is set to True.
qcrEnabled End users can drag columns/bands in the corresponding dropdown regardless of the settings specified by the View’s OptionsCustomize.ColumnMoving and OptionsCustomize.BandMoving properties.
qcrDisabled End users cannot drag columns/bands in these dropdowns.

Use the View’s OptionsCustomize.ColumnsQuickCustomizationReordering and OptionsCustomize.BandsQuickCustomizationReordering properties to specify these options.

See Also