Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
You can use Aspose.Cells for Python via .NET to set the AutoRecover property of a workbook. The default value of this property is true. When you set it to false on a workbook, Microsoft Excel disables AutoRecover (Autosave) for that Excel file.
Aspose.Cells for Python via .NET provides the Workbook.settings.auto_recover property to enable or disable this option.
The following code explains how to use the Workbook.settings.auto_recover property of the workbook. The code first reads the default value of this property, which is true, then it sets it to false and saves the workbook. Afterwards, it reads the workbook again and obtains the value of this property, which is false at that time.
Here is the console output of the above sample code.
AutoRecover: True
AutoRecover: FalseAnalyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.