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

ASPxGridViewSettings.ColumnMaxWidth Property

Gets or sets a value that specifies the grid columns’ maximum width.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(0)]
public int ColumnMaxWidth { get; set; }

Property Value

Type Default Description
Int32 0

An integer value that is the maximum width.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ColumnMaxWidth
ASP.NET Bootstrap Controls BootstrapGridView
.Settings.ColumnMaxWidth
ASP.NET Web Forms Controls ASPxGridView
.Settings.ColumnMaxWidth
GridViewProperties
.Settings.ColumnMaxWidth
GridViewSettings
.Settings.ColumnMaxWidth
GridViewSettings<RowType>
.Settings.ColumnMaxWidth
MVCxGridView
.Settings.ColumnMaxWidth
MVCxGridViewProperties
.Settings.ColumnMaxWidth

Remarks

Use the ColumnMaxWidth property to specify the maximum width for all grid columns. To set the maximum width for each column, use the GridViewColumn.MaxWidth property.

See Also