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

ColumnBase.MinWidth Property

Gets or sets the column’s minimum width. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v18.2.dll

Declaration

[XtraSerializableProperty]
public double MinWidth { get; set; }

Property Value

Type Description
Double

A Double value that specifies the column’s minimum width, in pixels.

Remarks

Column widths can be changed automatically, so that the total columns’ width matches the grid’s width. In this instance, changing the width of one column automatically changes the widths of other columns. This behavior is controlled by the grid’s GridControl.AutoWidth property. Use the MinWidth property to specify the minimum width of the column.

See Also