DataGridViewCellCollection.Insert(Int32, DataGridViewCell) Method

Definition

Inserts a cell into the collection at the specified index.

public:
 virtual void Insert(int index, System::Windows::Forms::DataGridViewCell ^ dataGridViewCell);
public virtual void Insert (int index, System.Windows.Forms.DataGridViewCell dataGridViewCell);
abstract member Insert : int * System.Windows.Forms.DataGridViewCell -> unit
override this.Insert : int * System.Windows.Forms.DataGridViewCell -> unit
Public Overridable Sub Insert (index As Integer, dataGridViewCell As DataGridViewCell)

Parameters

index
Int32

The zero-based index at which to place dataGridViewCell.

dataGridViewCell
DataGridViewCell

The DataGridViewCell to insert.

Exceptions

The row that owns this DataGridViewCellCollection already belongs to a DataGridView control.

-or-

dataGridViewCell already belongs to a DataGridViewRow.

Remarks

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.

Applies to

See also