DataGridViewComboBoxCell.InitializeEditingControl Method

Definition

Attaches and initializes the hosted editing control.

C#
public override void InitializeEditingControl(int rowIndex, object initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle);
C#
public override void InitializeEditingControl(int rowIndex, object? initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle);

Parameters

rowIndex
Int32

The index of the cell's parent row.

initialFormattedValue
Object

The initial value to be displayed in the control.

dataGridViewCellStyle
DataGridViewCellStyle

A DataGridViewCellStyle that determines the appearance of the hosted control.

Remarks

The InitializeEditingControl method initializes the hosted ComboBox control as described in the base DataGridViewCell.InitializeEditingControl method. In addition, for every invocation, InitializeEditingControl does the following:

This method also adjusts the cell's dimensions to accommodate the hosted ComboBox control.

Applies to

Produkt Versioner
.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