DataGridViewRowCollection.InsertCopies Method
Assembly: System.Windows.Forms (in system.windows.forms.dll)
public void InsertCopies ( int indexSource, int indexDestination, int count )
public function InsertCopies ( indexSource : int, indexDestination : int, count : int )
Not applicable.
Parameters
- indexSource
The index of the DataGridViewRow on which to base the new rows.
- indexDestination
The position at which to insert the rows.
- count
The number of DataGridViewRow objects to add to the DataGridViewRowCollection.
| Exception type | Condition |
|---|---|
| indexSource is less than zero or greater than the number of rows in the collection minus one. -or- indexDestination is less than zero or greater than the number of rows in the collection. -or- count is less than 1. | |
| 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- indexDestination is equal to the number of rows in the collection and DataGridView.AllowUserToAddRows is true. -or- This operation would insert frozen rows after unfrozen rows or unfrozen rows before frozen rows. |
The InheritedStyle property of the new DataGridViewRow objects has the same values as the InheritedStyle of the DataGridViewRow positioned at indexSource. The InsertCopies method adds shared rows to the DataGridViewRowCollection, if possible. Otherwise, the new rows are unshared. 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 System.Windows.Forms.DataGridView.Sort method in a DataGridView.RowsAdded event handler. You might also want to call the System.Windows.Forms.DataGridView.Sort method in a CellValueChanged event handler to sort the rows when the user modifies a cell.
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.