Hi guys, we're evaluating upgrading cells to stay current but we ran into a breaking change that we depend on.
In 7.5.0.1 we rely on the "getter" for SafeOptions.SaveFormat to determine the mime type we need to send back to the response stream.
I know you changed SaveOptions but for some reason the getter on SafeFormat is no longer working the same way.
We get back "default" when I expected to get back xlsm. We use a reporting framework to open a file and then rely on aspose.cells later to tell us what the correct format was. We don't hold onto the original extension.
Here's how we do it with 7.5.0.
var sf = Xls.SaveOptions.SaveFormat.ToString();
returns "Xlsm" if we opened a macro file
With 8.7.1.0
var ff = Xls.FileFormat.ToString();
returns "Default" if we open a macro file.
We were depending on cells internal version of saveformat. This now looks write-only. How can we get what cells is going to save as?
thanks a ton Marty at Cigna