Version

InsertDataRows Method

Inserts one or more data rows into the table
Syntax
'Declaration
 
Public Sub InsertDataRows( _
   ByVal dataRowIndex As Integer, _
   Optional ByVal count As Integer _
) 
public void InsertDataRows( 
   int dataRowIndex,
   int count
)

Parameters

dataRowIndex
The insertion point relative to the first row in the DataAreaRegion.
count
The number of columns 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.
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