Copying a Workbook does not copy settings

Hello.
I have a problem with copying Workbook.
When I make a copy - it copy only data in workbook.
But I need to copy settings too.

How I should it to do ?

For example this test. I set calculate mode to Manual. But after copy new workbook has Automatic calculate mode

@Test
public void copy_workbook() throws Exception {
	Workbook workbook = new Workbook();
	workbook.getWorksheets().add();
	Worksheet worksheet = workbook.getWorksheets().get(0);
	worksheet.getCells().get("A1").setValue("1");
	workbook.getSettings().getFormulaSettings().setCalculationMode(CalcModeType.MANUAL);
	Workbook copiedWorkbook = new Workbook();
	copiedWorkbook.copy(workbook);
	assertEquals(workbook.getWorksheets().get(0).getCells().get("A1").getValue(), copiedWorkbook.getWorksheets().get(0).getCells().get("A1").getValue());
	assertEquals(workbook.getSettings().getFormulaSettings().getCalculationMode(), copiedWorkbook.getSettings().getFormulaSettings().getCalculationMode());
}

@MasteRMR
By testing with sample code on the latest version v24.7, we can reproduce the issue. Found that some settings and properties were not copied when copying the workbook.

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): CELLSJAVA-46059

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

@MasteRMR,

This is to inform you that your issue (Ticket ID: “CELLSJAVA-46059”) has been resolved. The fix will be included in the upcoming release (Aspose.Cells v24.8) which we plan to release in the first half of August 2024. We will notify you when the next release is released.

The issues you have found earlier (filed as CELLSJAVA-46059) have been fixed in Aspose.Cells for Java 24.8.