Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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