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

TableView.AllowBandMoving Property

Gets or sets whether an end user is allowed to rearrange bands. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v18.2.dll

Declaration

public bool AllowBandMoving { get; set; }

Property Value

Type Description
Boolean

true, to allow rearranging bands; otherwise, false.

Remarks

End users are allowed to rearrange bands if the view’s AllowBandMoving property is set to true.

Tip

  • Use the DataViewBase.AllowColumnMoving property to allow an end user to move columns.
  • Individual bands provide the BaseColumn.AllowMoving property. Setting this property to true or false overrides the default behavior specified by the view. This can be useful when it is required to prevent an end user from rearranging individual columns.
See Also