officefileapi-devexpress-dot-spreadsheet-dot-calculationoptions-f3ffe541.md
Indicates whether formulas should be recalculated when the workbook is opened.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
bool FullCalculationOnLoad { get; set; }
Property FullCalculationOnLoad As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true to recalculate all formulas when the workbook is opened; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to FullCalculationOnLoad |
|---|---|
| DocumentSettings |
.Calculation .FullCalculationOnLoad
|
The FullCalculationOnLoad property value is stored in a document file. When the Spreadsheet opens a workbook with this option enabled, it recalculates all formulas. However, if the CalculationOptions.Mode property is set to Manual, the Spreadsheet does not recalculate the workbook even if FullCalculationOnLoad is true.
When the Spreadsheet loaded a workbook and successfully recalculated all formulas, the FullCalculationOnLoad property is reset to its default value (false).
See Also