DataGridViewColumnCollection.IList.Add(Object) Method

Definition

Adds an object to the end of the collection.

 virtual int System.Collections.IList.Add(System::Object ^ value) = System::Collections::IList::Add;
int IList.Add (object value);
int IList.Add (object? value);
abstract member System.Collections.IList.Add : obj -> int
override this.System.Collections.IList.Add : obj -> int
Function Add (value As Object) As Integer Implements IList.Add

Parameters

value
Object

The Object to add to the end of the collection. The value can be null.

Returns

The index at which value has been added.

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