move method

move(self, dest_cell_name)

Moves the PivotTable to a different location in the worksheet.


def move(self, dest_cell_name):
    ...
ParameterTypeDescription
dest_cell_namestrthe 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):
    ...
ParameterTypeDescription
rowintrow index.
columnintcolumn 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