officefileapi-devexpress-dot-spreadsheet-cc76e197.md
Lists values used to specify when data should be recalculated in a non-visual Workbook or the Spreadsheet control.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
public enum WorkbookCalculationMode
Public Enum WorkbookCalculationMode
| Name | Description |
|---|---|
UseDocumentSettings |
Uses the calculation mode specified in the document (this value is stored in the CalculationOptions.Mode property).
|
| Manual |
Ignores the document’s calculation mode and starts calculation only on user request or after the Calculate method call. Never recalculates formulas when the document is loaded or before it is saved.
|
| Automatic |
Ignores the document’s calculation mode and recalculates formulas each time a cell value, formula, or defined name changes.
|
The following properties accept/return WorkbookCalculationMode values:
See Also