Skip to main content

TreeListOptionsCustomization.AllowChangeBandParent Property

Specifies whether bands can be moved between parents.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

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:

Object Type Path to AllowChangeBandParent
TreeList
.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