Skip to main content

TreeListOptionsBand.ShowInCustomizationForm Property

Specifies whether the band’s header is displayed in the Customization Form when the band is hidden.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

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

Property Value

Type Default Description
Boolean true

true, the band’s header is displayed in the Customization Form when the band is invisible; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowInCustomizationForm
TreeListBand
.OptionsBand .ShowInCustomizationForm

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 ShowInCustomizationForm property is set to false, the band is not shown in the Customization Form when invisible.

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

You can also prevent all hidden bands from being shown in the Customization Form by setting the TreeList’s TreeListOptionsCustomization.ShowBandsInCustomizationForm property to false (in this case, the Bands tab is not displayed).

See Also