windowsforms-devexpress-dot-xtratreelist-dot-treelistoptionscustomization-2b7f1436.md
Gets or sets whether and how column/band headers are sorted within the advanced Customization Form.
Namespace : DevExpress.XtraTreeList
Assembly : DevExpress.XtraTreeList.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.TreeList
[DefaultValue(TreeListCustomizationFormSortMode.Default)]
[XtraSerializableProperty]
public virtual TreeListCustomizationFormSortMode AdvancedCustomizationFormSortMode { get; set; }
<DefaultValue(TreeListCustomizationFormSortMode.Default)>
<XtraSerializableProperty>
Public Overridable Property AdvancedCustomizationFormSortMode As TreeListCustomizationFormSortMode
| Type | Default | Description |
|---|---|---|
| DevExpress.XtraTreeList.TreeListCustomizationFormSortMode | Default |
A value that specifies whether and how column/band headers are sorted in the advanced Customization Form.
|
You can access this nested property as listed below:
| Object Type | Path to AdvancedCustomizationFormSortMode |
|---|---|
| TreeList |
.OptionsCustomization .AdvancedCustomizationFormSortMode
|
The advanced Customization Form contains the sort button that allows users to change the display order of column and band headers within this form.
Use the AdvancedCustomizationFormSortMode property to change this order in code.
treeList1.OptionsCustomization.AdvancedCustomizationFormSortMode = TreeListCustomizationFormSortMode.AlphabeticalAscending;
treeList1.OptionsCustomization.AdvancedCustomizationFormSortMode = TreeListCustomizationFormSortMode.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 TreeListColumn.VisibleIndex and TreeListBand.Index).
See Also
TreeListOptionsCustomization Class