Skip to main content
A newer version of this page is available. .

TreeListOptionsCustomization.AllowChangeBandParent Property

Specifies whether bands can be moved between parents.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public bool AllowChangeBandParent { get; set; }

Property Value

Type Default Description
Boolean **false**

true, if bands can be moved between parents; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to AllowChangeBandParent
WinForms Controls ResourcesTree
.OptionsCustomization.AllowChangeBandParent
TreeList
.OptionsCustomization.AllowChangeBandParent
Reporting XRDesignFieldList
.OptionsCustomization.AllowChangeBandParent
XRDesignReportExplorer
.OptionsCustomization.AllowChangeBandParent

Remarks

A TreeList control allows you to arrange bands into a hierarchical structure. By default, bands can only be moved within their parent bands (if the band’s TreeListOptionsBand.AllowMove and TreeList’s TreeListOptionsCustomization.AllowBandMoving properties are set to true). To allow bands to change parents, enable the AllowChangeBandParent option.

Note, that you can reorder bands in code without restrictions regardless of the AllowChangeBandParent property’s value.

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

See Also