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 allow developers to retrieve the version of the application that created a given spreadsheet.
C#
var book = new Workbook("sample.xlsx");
var properties = book.BuiltInDocumentProperties;
Console.WriteLine(properties.Version);
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 holds. Aspose.Cells 8.2.2 has filled up this gap by providing the Chart.Worksheet property.
C#
var workbook = new Workbook("sample.xlsx");
var chart = workbook.Worksheets[0].Charts[0];
var worksheet = chart.Worksheet;
Console.WriteLine("Chart's Sheet Name: " + worksheet.Name);
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.