Skip to main content

FlowLayoutControl.LayerMinWidth Property

Gets the minimum 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.v23.2.dll

NuGet Package: DevExpress.Wpf.LayoutControl

Declaration

public double LayerMinWidth { get; }

Property Value

Type Description
Double

A Double value that specifies the minimum 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 minimum width of the columns is determined by the MinWidth properties of the items. If items are arranged in rows, the minimum height of the rows is determined by the MinHeight properties of the items. The minimum width/height cannot be less than the value specified by the FlowLayoutControl.DefaultLayerMinWidth field.

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