DataGridViewTextBoxCell.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 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:
The BorderStyle property is set to None.
The Multiline and AcceptsReturn properties are set to
true
.The Text property is set to the
initialFormattedValue
parameter.