如何设置工作簿的自动恢复属性
Contents
[
Hide
]
您可以使用 Aspose.Cells 设置工作簿的自动恢复属性。该属性的默认值为真的.当你设置它错误的在工作簿上,Microsoft Excel 在该 Excel 文件上禁用自动恢复(自动保存)。
Aspose.Cells提供工作簿.设置.自动恢复属性来启用或禁用此选项。
下面的代码解释了如何使用工作簿.设置.自动恢复工作簿的属性。代码首先读取此属性的默认值,即真的,然后将其设置为错误的并保存工作簿。然后它再次读取工作簿并读取此属性的值错误的此时。
C# 设置工作簿自动恢复属性的代码
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create workbook object | |
Workbook workbook = new Workbook(); | |
// Read AutoRecover property | |
Console.WriteLine("AutoRecover: " + workbook.Settings.AutoRecover); | |
// Set AutoRecover property to false | |
workbook.Settings.AutoRecover = false; | |
// Save the workbook | |
workbook.Save(dataDir + "output_out.xlsx"); | |
// Read the saved workbook again | |
workbook = new Workbook(dataDir + "output_out.xlsx"); | |
// Read AutoRecover property | |
Console.WriteLine("AutoRecover: " + workbook.Settings.AutoRecover); |
输出
这是上述示例代码的控制台输出。
AutoRecover: True
AutoRecover: False