Version

Insert Method (WorksheetRowCollection)

Inserts one or more rows into the collection
Syntax
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: Android 4.4+, iOS 8+

Development Environments: Visual Studio 2015+, Visual Studio for Mac Preview, Xamarin for Visual Studio 4.2+

See Also