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

ASPxGridViewBehaviorSettings.ColumnResizeMode Property

OBSOLETE

Use the SettingsResizing.ColumnResizeMode property instead.

Gets or sets a value that specifies how columns are resized when an end-user changes a column’s width.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[Obsolete("Use the SettingsResizing.ColumnResizeMode property instead.")]
[DefaultValue(ColumnResizeMode.Disabled)]
public ColumnResizeMode ColumnResizeMode { get; set; }

Property Value

Type Default Description
ColumnResizeMode **Disabled**

One of the ColumnResizeMode enumeration values.

Available values:

Name Description
Disabled

End-users are not allowed to resize columns.

Control

When an end-user changes a column’s width, the widths of other columns are not changed. As a result, the control’s width is changed.

ColumnResizing_Control

NextColumn

Changing a column’s width changes the next column’s width. The control’s width isn’t changed.

ColumnResizing_NextColumn

Property Paths

You can access this nested property as listed below:

Object Type Path to ColumnResizeMode
ASPxGridView
.SettingsBehavior.ColumnResizeMode
GridViewProperties
.SettingsBehavior.ColumnResizeMode

Remarks

Note

Use the ASPxGridViewResizingSettings.ColumnResizeMode property instead.

End-users can change column widths by dragging the right edges of their headers. The ColumnResizeMode property specifies how the ASPxGridView control behaves when an end-user resizes a column.

If the ColumnResizeMode property is set to Disabled, end-users aren’t allowed to resize columns.

When column resizing is enabled, width dimension properties (such as the grid’s ASPxWebControl.Width, its columns’ WebColumnBase.Width, etc.) should be specified. To learn more, see the ASPxGridView Fixed Table Layout Specifics (Scrolling and Column Resizing) topic.

See Also