Skip to main content

TreeListOptionsCustomization.ShowBandsInCustomizationForm Property

Specifies whether hidden bands are displayed in the Customization Form.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public bool ShowBandsInCustomizationForm { get; set; }

Property Value

Type Default Description
Boolean true

true if hidden bands are displayed in the Customization Form; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowBandsInCustomizationForm
TreeList
.OptionsCustomization .ShowBandsInCustomizationForm

Remarks

If a band is hidden (the TreeListBand.Visible property is set to false), the band is not displayed in a TreeList and can be shown in the Customization Form. This form contains the Columns and Bands tabbed pages, which display hidden columns and bands, respectively.

TreeListCustomizationFormHiddenBands

If the ShowBandsInCustomizationForm property is set to false, the Bands tab is not shown in the Customization Form.

You can also use the OptionsBand.ShowInCustomizationForm property of a specific band to specify whether it is accessible through the Customization Form.

Note

The ShowBandsInCustomizationForm property is not in effect when you customize bands using the Tree List Designer.

See Also