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

FlowLayoutControl.LayerMaxWidth Property

Gets the maximum width of columns (if items are arranged in columns) or height of rows (if items are arranged in rows).

Namespace: DevExpress.Xpf.LayoutControl

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

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

Declaration

public double LayerMaxWidth { get; }

Property Value

Type Description
Double

A Double value that specifies the maximum width of columns (if items are arranged in columns) or height of rows (if items are arranged in rows).

Remarks

If items are arranged in columns, the maximum width of the columns is determined by the MaxWidth properties of the items. If items are arranged in rows, the maximum height of the rows is determined by the MaxHeight properties of the items.

To enable the resizing feature, set the FlowLayoutControl.ShowLayerSeparators and FlowLayoutControl.AllowLayerSizing properties to true. Resizing of columns/rows via separators is supported if the items have the same width/height.

See Also