DataGridViewTextBoxCell.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 row being edited.

initialFormattedValue
Object

The initial value to be displayed in the control.

dataGridViewCellStyle
DataGridViewCellStyle

A cell style that is used to determine the appearance of the hosted control.

Remarks

The InitializeEditingControl method initializes the hosted editing control as described in the base DataGridViewCell.InitializeEditingControl method. For every invocation, this method also sets the following visual attributes of the editing control:

Applies to

See also