Version

Insert Method (WorksheetRowCollection)

Inserts one or more rows into the collection
Syntax
'Declaration
 
Public Sub Insert( _
   ByVal index As Integer, _
   Optional ByVal count As Integer _
) 
public void Insert( 
   int index,
   int count
)

Parameters

index
the insertion point
count
The number of rows to insert
Exceptions
ExceptionDescription
System.InvalidOperationExceptionIf the operation is not allowed, e.g. if it would cause data to be shifted off the worksheet.
System.IndexOutOfRangeExceptionIf index is negative.
System.ArgumentOutOfRangeExceptionIf count is less than 1.
Remarks

Note: An equal number of rows will be removed (i.e. bumped) off the end of the collection.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also