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

TreeListOptionsCustomization.AllowColumnMoving Property

Specifies whether columns can be moved by dragging their headers.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

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

Property Value

Type Default Description
Boolean **true**

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

Property Paths

You can access this nested property as listed below:

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

Remarks

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

To prevent a specific column from being moved, use the column’s TreeListOptionsColumn.AllowMove property.

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

See Also