设置工作簿的公式计算方式
Contents
[
Hide
]
Microsoft Excel允许设置公式计算方式,即公式的计算方式。存在三个可能的值:
- 自动 - 每当发生更改时重新计算,以及每次打开工作簿时重新计算。
- 自动,数据表除外 - 每当发生更改时重新计算,但不包括数据表。
- 手动 - 仅当用户通过按 F9 或 CTRL+ALT+F9 明确请求时或保存工作簿时才重新计算。
在Microsoft Excel中设置公式计算模式:
- 选择公式接着计算选项.
- 选择其中一个选项。
Aspose.Cells 还允许您设置公式计算模式使用公式设置.计算模式模式属性。您可以将其分配给计算模式类型具有以下值之一的枚举:
- CalcModeType.自动
- CalcModeType.AutomaticExceptTable
- CalcModeType.手册
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 a workbook | |
Workbook workbook = new Workbook(); | |
// Set the Formula Calculation Mode to Manual | |
workbook.Settings.FormulaSettings.CalculationMode = CalcModeType.Manual; | |
// Save the workbook | |
workbook.Save(dataDir + "output_out.xlsx", SaveFormat.Xlsx); |