The type or namespace name 'LoadOptions' could not be found in Aspoce.Cell 4.4.0

I try to read SpreadsheetML format, but LoadOptions/LoadFormat classes are not found. We use very old version os Aspoce.Cell 4.4.0. Does it support LoadOptions?

Hi,

Thanks for your posting and using Aspose.Cells.

Probably, it does not support LoadOptions that’s why you are getting this message. Please download and use the latest version: Aspose.Cells
for .NET v7.5.1.2
for your needs.

Hi,

No, it doesn't support LoadOptions or LoadFormat APIs, you need to use the latest versions of the product for it. I think you may try to use FileFormatType enum instead if it exists in your older version and relevant member is there for SpreadsheetML format, e,.g

Workbook wb = new Workbook();
wb.Open(strFileName, FileFormatType.____);

Thank you.