DataGridViewComboBoxCell.InitializeEditingControl Method

Definition

Attaches and initializes the hosted editing control.

public:
 override void InitializeEditingControl(int rowIndex, System::Object ^ initialFormattedValue, System::Windows::Forms::DataGridViewCellStyle ^ dataGridViewCellStyle);
public override void InitializeEditingControl (int rowIndex, object initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle);
public override void InitializeEditingControl (int rowIndex, object? initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle);
override this.InitializeEditingControl : int * obj * System.Windows.Forms.DataGridViewCellStyle -> unit
Public Overrides Sub InitializeEditingControl (rowIndex As Integer, initialFormattedValue As Object, dataGridViewCellStyle As 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

See also