System.Windows.Forms.DataGridViewAutoSizeColumnMode Enumeration

Defines values for specifying how the width of a column is adjusted.

Syntax

public enum DataGridViewAutoSizeColumnMode

Remarks

The System.Windows.Forms.DataGridView control can resize its columns to make them fill the available horizontal width of the control or to make them display the full contents of all cells or of specified cells.

With DataGridViewAutoSizeColumnMode.Fill mode, the preferred width of a column is determined by resizing all columns in that mode so that all visible columns in the control exactly fill the horizontal width of the available display area. With other modes, the preferred column width is the minimum width required to display the largest cell value from all cells or a subset of cells in that column, such as the subset of cells that are in currently displayed rows. Using a subset of cells to determine the new width is useful to avoid a performance penalty when working with many rows of data.

Content-based automatic resizing prevents users from adjusting column widths with the mouse. User resizing is enabled in fill mode, however.

This enumeration is used by the DataGridViewColumn.AutoSizeMode and DataGridViewColumn.InheritedAutoSizeMode properties of columns and the erload:System.Windows.Forms.DataGridView.AutoResizeColumn method.

For more information about sizing modes, see Sizing Options in the Windows Forms DataGridView Control. For more information about column fill mode in particular, see Column Fill Mode in the Windows Forms DataGridView Control.

Members

Member NameDescription
AllCells

The column width adjusts to fit the contents of all cells in the column, including the header cell.

AllCellsExceptHeader

The column width adjusts to fit the contents of all cells in the column, excluding the header cell.

ColumnHeader

The column width adjusts to fit the contents of the column header cell.

DisplayedCells

The column width adjusts to fit the contents of all cells in the column that are in rows currently displayed onscreen, including the header cell.

DisplayedCellsExceptHeader

The column width adjusts to fit the contents of all cells in the column that are in rows currently displayed onscreen, excluding the header cell.

Fill

The column width adjusts so that the widths of all columns exactly fills the display area of the control, requiring horizontal scrolling only to keep column widths above the DataGridViewColumn.MinimumWidth property values. Relative column widths are determined by the relative DataGridViewColumn.FillWeight property values.

None

The column width does not automatically adjust.

NotSet

The sizing behavior of the column is inherited from the DataGridView.AutoSizeColumnsMode property.

Requirements

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0