wpf-devexpress-dot-xpf-dot-layoutcontrol-dot-flowlayoutcontrol-45138032.md
Gets or sets if adding flow breaks during item movement is enabled. This is a dependency property.
Namespace : DevExpress.Xpf.LayoutControl
Assembly : DevExpress.Xpf.LayoutControl.v25.2.dll
NuGet Package : DevExpress.Wpf.LayoutControl
public bool AllowAddFlowBreaksDuringItemMoving { get; set; }
Public Property AllowAddFlowBreaksDuringItemMoving As Boolean
| Type | Description |
|---|---|
| Boolean |
true if adding flow breaks during item movement is enabled; otherwise, false.
|
Items hosted within a FlowLayoutControl can be arranged in single or multiple layers (flows). Use the FlowLayoutControl.IsFlowBreak attached property to specify that a specific item must forcibly start a new layer (column or row, according to the FlowLayoutControl.Orientation property).
Flow Layout Control items can be moved at runtime by an end-user if the control’s FlowLayoutControl.AllowItemMoving property is set to true. While being moved, an item’s behavior depends on the AllowAddFlowBreaksDuringItemMoving property. If the AllowAddFlowBreaksDuringItemMoving is set to true , a moved item can be placed either within an existing layer, or start a new one. If the AllowAddFlowBreaksDuringItemMoving property is set to false , only moving to existing layers is allowed.
See Also