DataGridViewColumnCollection::IList::Remove Method (Object^)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Removes the first occurrence of the specified object from the collection.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

private:
virtual void Remove(
	Object^ value
) sealed = IList::Remove

Parameters

value
Type: System::Object^

The Object to remove from the collection. The value can be null.

Exception Condition
InvalidCastException

value is not a DataGridViewColumn.

ArgumentException

value is not in the collection.

ArgumentNullException

value is null.

InvalidOperationException

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:

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

.NET Framework
Available since 2.0
Return to top
Show: