Back to Devexpress

TreeListOptionsCustomization.AdvancedCustomizationFormSortMode Property

windowsforms-devexpress-dot-xtratreelist-dot-treelistoptionscustomization-2b7f1436.md

latest3.3 KB
Original Source

TreeListOptionsCustomization.AdvancedCustomizationFormSortMode Property

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

Declaration

csharp
[DefaultValue(TreeListCustomizationFormSortMode.Default)]
[XtraSerializableProperty]
public virtual TreeListCustomizationFormSortMode AdvancedCustomizationFormSortMode { get; set; }
vb
<DefaultValue(TreeListCustomizationFormSortMode.Default)>
<XtraSerializableProperty>
Public Overridable Property AdvancedCustomizationFormSortMode As TreeListCustomizationFormSortMode

Property Value

TypeDefaultDescription
DevExpress.XtraTreeList.TreeListCustomizationFormSortModeDefault

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 TypePath to AdvancedCustomizationFormSortMode
TreeList

.OptionsCustomization .AdvancedCustomizationFormSortMode

|

Remarks

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.

csharp
treeList1.OptionsCustomization.AdvancedCustomizationFormSortMode = TreeListCustomizationFormSortMode.AlphabeticalAscending;
vb
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

TreeListOptionsCustomization Members

DevExpress.XtraTreeList Namespace