DataGridViewRowCollection::Remove Method (DataGridViewRow^)
.NET Framework (current version)
Removes the row from the collection.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- dataGridViewRow
-
Type:
System.Windows.Forms::DataGridViewRow^
The row to remove from the DataGridViewRowCollection.
| Exception | Condition |
|---|---|
| ArgumentNullException | dataGridViewRow is null. |
| ArgumentException | dataGridViewRow is not contained in this collection. -or- dataGridViewRow is a shared row. |
| InvalidOperationException | The associated DataGridView control is performing one of the following actions that temporarily prevents new rows from being added:
-or- This method is being called from a handler for one of the following DataGridView events: -or- dataGridViewRow is the row for new records. -or- The associated DataGridView control is bound to an IBindingList implementation with AllowRemove and SupportsChangeNotification property values that are not both true. |
.NET Framework
Available since 2.0
Available since 2.0
Show: