DataGridViewComboBoxColumn.AutoComplete Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public:
property bool AutoComplete { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(true)]
public bool AutoComplete { get; set; }
[<System.ComponentModel.Browsable(true)>]
member this.AutoComplete : bool with get, set
Public Property AutoComplete As Boolean
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.