Cells.InsertRows

InsertRows(int, int, bool)

Inserts multiple rows into the worksheet.

public void InsertRows(int rowIndex, int totalRows, bool updateReference)
ParameterTypeDescription
rowIndexInt32Row index.
totalRowsInt32Number of rows to be inserted.
updateReferenceBooleanIndicates if references in other worksheets will be updated.

See Also


InsertRows(int, int, InsertOptions)

Inserts multiple rows into the worksheet.

public void InsertRows(int rowIndex, int totalRows, InsertOptions options)
ParameterTypeDescription
rowIndexInt32Row index.
totalRowsInt32Number of rows to be inserted.
optionsInsertOptionsIndicates if references in other worksheets will be updated.

See Also


InsertRows(int, int)

Inserts multiple rows into the worksheet.

public void InsertRows(int rowIndex, int totalRows)
ParameterTypeDescription
rowIndexInt32Row index.
totalRowsInt32Number of rows to be inserted.

See Also