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

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.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.LayoutControl, DevExpress.Wpf.Layout

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