Edit

Share via


DataGridViewColumnSortMode Enum

Definition

Defines how a DataGridView column can be sorted by the user.

public enum DataGridViewColumnSortMode
Inheritance
DataGridViewColumnSortMode

Fields

Name Value Description
NotSortable 0

The column can only be sorted programmatically, but it is not intended for sorting, so the column header will not include space for a sorting glyph.

Automatic 1

The user can sort the column by clicking the column header (or pressing F3 on a cell) unless the column headers are used for selection. A sorting glyph will be displayed automatically.

Programmatic 2

The column can only be sorted programmatically, and the column header will include space for a sorting glyph.

Examples

The following code example illustrates the use of this type. For more information, see How to: Set the Sort Modes for Columns in the Windows Forms DataGridView Control.

this.dataGridView1.Columns["Priority"].SortMode =
    DataGridViewColumnSortMode.Automatic;

Remarks

Each column may have a different sort mode specified by the SortMode property.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also