Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
The new property Version has been added to the BuiltInDocumentPropertyCollection class in order to allows developers to get or set the version of the application for a given spreadsheet.
Java
Workbook book = new Workbook("sample.xlsx");
BuiltInDocumentPropertyCollection properties = book.getBuiltInDocumentProperties();
System.out.println(properties.getVersion());
Before the release of Aspose.Cells 8.2.2, it was not possible to retrieve the instance of the Worksheet from a Chart object it contains. Aspose.Cells 8.2.2 has filled up this gap by providing the Chart.Worksheet property.
Java
Workbook workbook = new Workbook("sample.xlsx");
Chart chart = workbook.getWorksheets().get(0).getCharts().get(0);
Worksheet worksheet = chart.getWorksheet();
System.out.println("Chart's Sheet Name: " + worksheet.getName());
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.