Skip to main content
All docs
V23.2
.NET 6.0+
  • The page you are viewing does not exist in the .NET Framework 4.5.2+ platform documentation. This link will take you to the parent topic of the current section.

IModelColumnBlazor.MinWidth Property

Specifies the minimum width of a column, in pixels.

Namespace: DevExpress.ExpressApp.Blazor.SystemModule

Assembly: DevExpress.ExpressApp.Blazor.v23.2.dll

NuGet Package: DevExpress.ExpressApp.Blazor

Declaration

[DefaultValue(50)]
int MinWidth { get; set; }

Property Value

Type Default Description
Int32 50

The minimum width of a column, in pixels.

Remarks

Use the MinWidth property to set the minimum width of a grid column, in pixels. This value initializes the DxGridColumn.MinWidth property in the ASP.NET Core Blazor Grid Control that serves as the List View editor.

You can change the default value of this property in the Model Editor. Note that if you set the property to 0, the column collapses if the grid cannot display all its columns.

For additional information on how the grid layout is rendered in different scenarios, see the following topic: Layout Specifics in Blazor Grid.

See Also