DataGridViewColumnCollection.IList.Insert(Int32, Object) Method

Definition

Inserts an element 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 Object to insert. The value can be null.

Implements

Exceptions

value is null.

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

  • Selecting all cells in the control.

  • Clearing the selection.

  • Updating column DisplayIndex property values.

-or-

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

-or-

The column indicated by value already belongs to a DataGridView control.

-or-

The SortMode property value of the column indicated by value is Automatic and the SelectionMode property value is FullColumnSelect or ColumnHeaderSelect. Use the control ISupportInitialize.BeginInit() and ISupportInitialize.EndInit() methods to temporarily set conflicting property values.

-or-

The InheritedAutoSizeMode property value of the column indicated by value is ColumnHeader and the ColumnHeadersVisible property value is false.

-or-

The column indicated by value has an InheritedAutoSizeMode property value of Fill and a Frozen property value of true.

-or-

The column indicated by value has a FillWeight property value that would cause the combined FillWeight values of all columns in the control to exceed 65535.

-or-

The column indicated by value has DisplayIndex and Frozen property values that would display it among a set of adjacent columns with the opposite Frozen property value.

-or-

The DataGridView control contains at least one row and the column indicated by value has a CellType property value of null.

Remarks

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

Applies to

See also