Hello,
I tried to save CustomDocumentProperties in my excel document using latest Aspose.Cell release and custom properties are not saved.
I used the following code
Dim Workbook As New Aspose.Cells.Workbook
Workbook.Open(_FileName, Aspose.Cells.FileFormatType.Excel2007Xlsx)
Workbook.Worksheets.CustomDocumentProperties.Add([Property].PropertyName, [Property].PropertyValue)
Workbook.Save(_FileName, Aspose.Cells.FileFormatType.Excel2007Xlsx)
Is there something wrong with my code or this feature is not supported for Excel 2007?
Thnks in advance.