DataGridViewRowCollection.IList.Insert(Int32, Object) Method

Definition

Inserts a DataGridViewRow into the collection at the specified index.

 virtual void System.Collections.IList.Insert(int index, System::Object ^ value) = System::Collections::IList::Insert;
void IList.Insert (int index, object value);
void IList.Insert (int index, object? value);
abstract member System.Collections.IList.Insert : int * obj -> unit
override this.System.Collections.IList.Insert : int * obj -> unit
Sub Insert (index As Integer, value As Object) Implements IList.Insert

Parameters

index
Int32

The zero-based index at which value should be inserted.

value
Object

The DataGridViewRow to insert into the DataGridViewRowCollection.

Implements

Exceptions

index is less than zero or greater than the number of rows in the collection.

value is null.

The associated DataGridView control is performing one of the following actions that temporarily prevents new rows from being added:

  • Selecting all cells in the control.

  • Clearing the selection.

-or-

This method is being called from a handler for one of the following DataGridView events:

-or-

The DataSource property of the DataGridView is not null.

-or-

index is equal to the number of rows in the collection and the AllowUserToAddRows property of the DataGridView is set to true.

-or-

The DataGridView has no columns.

-or-

The DataGridView property of the value is not null.

-or-

value has a Selected property value of true.

-or-

This operation would insert a frozen row after unfrozen rows or an unfrozen row before frozen rows.

value has more cells than there are columns in the control.

Remarks

This member is an explicit interface member implementation. It can be used only when the DataGridViewRowCollection instance is cast to an IList interface.

This method calls the Insert(Int32, DataGridViewRow) overload, passing in value after casting it to a DataGridViewRow.

Rows in the control are not automatically sorted when new rows are added. To sort new rows into their correct position, call the DataGridView.Sort method in a DataGridView.RowsAdded event handler. You might also want to call the DataGridView.Sort method in a CellValueChanged event handler to sort the rows when the user modifies a cell.

Applies to

See also