Skip to main content

FlowLayoutControl.AllowLayerSizing Property

Gets or sets whether columns or rows of items are allowed to be resized via built-in separators. Separators must be enabled via the FlowLayoutControl.ShowLayerSeparators property.

Namespace: DevExpress.Xpf.LayoutControl

Assembly: DevExpress.Xpf.LayoutControl.v23.2.dll

NuGet Package: DevExpress.Wpf.LayoutControl

Declaration

public bool AllowLayerSizing { get; set; }

Property Value

Type Description
Boolean

A Boolean value that specifies whether columns or rows of items are allowed to be resized via built-in separators.

Remarks

To allow columns/rows of items to be resized, set the AllowLayerSizing and FlowLayoutControl.ShowLayerSeparators properties to true. If layer separators are hidden, items cannot be resized, even if the AllowLayerSizing property is enabled.

After a column/row has been resized, the FlowLayoutControl.ItemsSizeChanged event fires.

See Also