Skip to main content
All docs
V25.1
  • 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.1.dll

    NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

    Declaration

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

    Property Value

    Type Default Description
    DevExpress.XtraTreeList.TreeListCustomizationFormSortMode 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
    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.

    Advanced Customization Form - sort button

    Use the AdvancedCustomizationFormSortMode property to change this order in code.

    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