DataGridViewRowCollection::Add Method (array<Object^>^)
Adds a new row to the collection, and populates the cells with the specified objects.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- values
-
Type:
array<System::Object^>^
A variable number of objects that populate the cells of the new DataGridViewRow.
| Exception | Condition |
|---|---|
| ArgumentNullException | values is null. |
| 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- The VirtualMode property of the DataGridView is set to true. - or - The DataSource property of the DataGridView is not null. -or- The DataGridView has no columns. -or- The row returned by the DataGridView::RowTemplate property has more cells than there are columns in the control. -or- This operation would add a frozen row after unfrozen rows. |
The Add(array<Object^>^) method adds an unshared row to the DataGridViewRowCollection. For more information, see Best Practices for Scaling the Windows Forms DataGridView Control.
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.
Available since 2.0