insert_rows method
Contents
[
Hide
]insert_rows(self, row_index, total_rows)
Inserts multiple rows into the worksheet.
def insert_rows(self, row_index, total_rows):
...
Parameter | Type | Description |
---|---|---|
row_index | int | Row index. |
total_rows | int | Number of rows to be inserted. |
insert_rows(self, row_index, total_rows, update_reference)
Inserts multiple rows into the worksheet.
def insert_rows(self, row_index, total_rows, update_reference):
...
Parameter | Type | Description |
---|---|---|
row_index | int | Row index. |
total_rows | int | Number of rows to be inserted. |
update_reference | bool | Indicates if references in other worksheets will be updated. |
insert_rows(self, row_index, total_rows, options)
Inserts multiple rows into the worksheet.
def insert_rows(self, row_index, total_rows, options):
...
Parameter | Type | Description |
---|---|---|
row_index | int | Row index. |
total_rows | int | Number of rows to be inserted. |
options | InsertOptions | Options for inserting operation. |
See Also
- module
aspose.cells
- class
Cells