move method
move(self, dest_cell_name)
Moves the PivotTable to a different location in the worksheet.
def move(self, dest_cell_name):
...
Parameter | Type | Description |
---|---|---|
dest_cell_name | str | the dest cell name. |
Remarks
NOTE: This property is now obsolete. Instead, please use PivotTable.MoveTo() method. This method will be removed 12 months later since December 2024. Aspose apologizes for any inconvenience you may have experienced.
move(self, row, column)
Moves the PivotTable to a different location in the worksheet.
def move(self, row, column):
...
Parameter | Type | Description |
---|---|---|
row | int | row index. |
column | int | column index. |
Remarks
NOTE: This property is now obsolete. Instead, please use PivotTable.MoveTo() method. This method will be removed 12 months later since December 2024. Aspose apologizes for any inconvenience you may have experienced.
See Also
- module
aspose.cells.pivot
- class
PivotTable