DataGridViewComboBoxCell.InitializeEditingControl Method
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.
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:
Sets the visual properties of the hosted ComboBox control, such as MaxDropDownItems, DropDownWidth, and FlatStyle, to match the corresponding properties of the current cell.
Sets the data-bound properties of the hosted ComboBox control, such as DataSource, DisplayMember, and ValueMember, to match the corresponding properties of the current cell.
Reinitializes the Items property of the hosted ComboBox control.
This method also adjusts the cell's dimensions to accommodate the hosted ComboBox control.