Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active February 16, 2022 06:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/fde0ed041326c57351a5857dcb5b6c50 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/fde0ed041326c57351a5857dcb5b6c50 to your computer and use it in GitHub Desktop.
Disable Compatibility Checker in Excel using C#
// Load Excel file
Workbook wb = new Workbook("workbook.xls");
// Disable compatibility checker
wb.Settings.CheckCompatibility = false;
// Save file
wb.Save("output.xls");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment