DataGridViewCellCollection::Insert Method (Int32, DataGridViewCell^)
.NET Framework (current version)
Inserts a cell into the collection at the specified index.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- index
-
Type:
System::Int32
The zero-based index at which to place dataGridViewCell.
- dataGridViewCell
-
Type:
System.Windows.Forms::DataGridViewCell^
The DataGridViewCell to insert.
| Exception | Condition |
|---|---|
| InvalidOperationException | The row that owns this DataGridViewCellCollection already belongs to a DataGridView control. -or- dataGridViewCell already belongs to a DataGridViewRow. |
Use this method to alter the collection before you add the containing row to a DataGridView control. Once you add the row to a control, the number of cells it contains always matches the number of columns in the control, so this method is no longer useful.
.NET Framework
Available since 2.0
Available since 2.0
Show: