Edit

Share via


DataGridViewComboBoxColumn.AutoComplete Property

Definition

Gets or sets a value indicating whether cells in the column will match the characters being entered in the cell with one from the possible selections.

[System.ComponentModel.Browsable(true)]
public bool AutoComplete { get; set; }

Property Value

true if auto completion is activated; otherwise, false. The default is true.

Attributes

Exceptions

The value of the CellTemplate property is null.

Remarks

Getting or setting this property gets or sets the AutoComplete property of the object returned by the CellTemplate property. Setting this property also sets the AutoComplete property of every cell in the column. To override the specified value for individual cells, set the cell values after you set the column value.

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