Skip to main content
A newer version of this page is available. .
All docs
V20.2

GridOptionsCustomization.AdvancedCustomizationFormSortMode Property

Gets or sets whether and how column/band headers are sorted within the advanced Customization Form.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v20.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

[DefaultValue(CustomizationFormSortMode.Default)]
[XtraSerializableProperty]
public virtual CustomizationFormSortMode AdvancedCustomizationFormSortMode { get; set; }

Property Value

Type Default Description
DevExpress.XtraGrid.Views.Grid.CustomizationFormSortMode **Default**

A value that specifies whether and how column/band headers are sorted in the advanced Customization Form.

Property Paths

You can access this nested property as listed below:

Object Type Path to AdvancedCustomizationFormSortMode
AdvBandedGridView
.OptionsCustomization .AdvancedCustomizationFormSortMode
BandedGridView
.OptionsCustomization .AdvancedCustomizationFormSortMode
GridView
.OptionsCustomization .AdvancedCustomizationFormSortMode

Remarks

The advanced Customization Form contains the button that allows users to sort column and band headers within this form.

The AdvancedCustomizationFormSortMode property allows you to sort column/band headers in code.

gridView1.OptionsCustomization.AdvancedCustomizationFormSortMode = CustomizationFormSortMode.AlphabeticalAscending;

If the AdvancedCustomizationFormSortMode property is set to Default, the column/band headers are displayed in the default order, specified by their visible indices (see GridColumn.VisibleIndex and GridBand.VisibleIndex).

See Also