Skip to main content

TreeListOptionsCustomization.AllowBandMoving Property

Specifies whether bands can be moved by dragging their headers.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

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

Property Value

Type Default Description
Boolean true

true if bands can be moved to a new position; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AllowBandMoving
TreeList
.OptionsCustomization .AllowBandMoving

Remarks

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

To prevent a specific band from being moved, use the band’s TreeListOptionsBand.AllowMove property.

By default, bands can only be moved within their parent bands. To remove this constraint, enable the TreeListOptionsCustomization.AllowChangeBandParent option.

See Also